mesa/glsl/glapi: enable GL_EXT_draw_buffers extension
[mesa.git] / src / glsl / glsl_parser_extras.cpp
1 /*
2 * Copyright © 2008, 2009 Intel Corporation
3 *
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:
10 *
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
13 * Software.
14 *
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.
22 */
23 #include <stdio.h>
24 #include <stdarg.h>
25 #include <string.h>
26 #include <assert.h>
27
28 #include "main/core.h" /* for struct gl_context */
29 #include "main/context.h"
30 #include "main/shaderobj.h"
31 #include "util/u_atomic.h" /* for p_atomic_cmpxchg */
32 #include "util/ralloc.h"
33 #include "ast.h"
34 #include "glsl_parser_extras.h"
35 #include "glsl_parser.h"
36 #include "ir_optimization.h"
37 #include "loop_analysis.h"
38
39 /**
40 * Format a short human-readable description of the given GLSL version.
41 */
42 const char *
43 glsl_compute_version_string(void *mem_ctx, bool is_es, unsigned version)
44 {
45 return ralloc_asprintf(mem_ctx, "GLSL%s %d.%02d", is_es ? " ES" : "",
46 version / 100, version % 100);
47 }
48
49
50 static const unsigned known_desktop_glsl_versions[] =
51 { 110, 120, 130, 140, 150, 330, 400, 410, 420, 430, 440, 450 };
52
53
54 _mesa_glsl_parse_state::_mesa_glsl_parse_state(struct gl_context *_ctx,
55 gl_shader_stage stage,
56 void *mem_ctx)
57 : ctx(_ctx), cs_input_local_size_specified(false), cs_input_local_size(),
58 switch_state()
59 {
60 assert(stage < MESA_SHADER_STAGES);
61 this->stage = stage;
62
63 this->scanner = NULL;
64 this->translation_unit.make_empty();
65 this->symbols = new(mem_ctx) glsl_symbol_table;
66
67 this->info_log = ralloc_strdup(mem_ctx, "");
68 this->error = false;
69 this->loop_nesting_ast = NULL;
70
71 this->struct_specifier_depth = 0;
72
73 this->uses_builtin_functions = false;
74
75 /* Set default language version and extensions */
76 this->language_version = ctx->Const.ForceGLSLVersion ?
77 ctx->Const.ForceGLSLVersion : 110;
78 this->es_shader = false;
79 this->ARB_texture_rectangle_enable = true;
80
81 /* OpenGL ES 2.0 has different defaults from desktop GL. */
82 if (ctx->API == API_OPENGLES2) {
83 this->language_version = 100;
84 this->es_shader = true;
85 this->ARB_texture_rectangle_enable = false;
86 }
87
88 this->extensions = &ctx->Extensions;
89
90 this->Const.MaxLights = ctx->Const.MaxLights;
91 this->Const.MaxClipPlanes = ctx->Const.MaxClipPlanes;
92 this->Const.MaxTextureUnits = ctx->Const.MaxTextureUnits;
93 this->Const.MaxTextureCoords = ctx->Const.MaxTextureCoordUnits;
94 this->Const.MaxVertexAttribs = ctx->Const.Program[MESA_SHADER_VERTEX].MaxAttribs;
95 this->Const.MaxVertexUniformComponents = ctx->Const.Program[MESA_SHADER_VERTEX].MaxUniformComponents;
96 this->Const.MaxVertexTextureImageUnits = ctx->Const.Program[MESA_SHADER_VERTEX].MaxTextureImageUnits;
97 this->Const.MaxCombinedTextureImageUnits = ctx->Const.MaxCombinedTextureImageUnits;
98 this->Const.MaxTextureImageUnits = ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxTextureImageUnits;
99 this->Const.MaxFragmentUniformComponents = ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxUniformComponents;
100 this->Const.MinProgramTexelOffset = ctx->Const.MinProgramTexelOffset;
101 this->Const.MaxProgramTexelOffset = ctx->Const.MaxProgramTexelOffset;
102
103 this->Const.MaxDrawBuffers = ctx->Const.MaxDrawBuffers;
104
105 /* 1.50 constants */
106 this->Const.MaxVertexOutputComponents = ctx->Const.Program[MESA_SHADER_VERTEX].MaxOutputComponents;
107 this->Const.MaxGeometryInputComponents = ctx->Const.Program[MESA_SHADER_GEOMETRY].MaxInputComponents;
108 this->Const.MaxGeometryOutputComponents = ctx->Const.Program[MESA_SHADER_GEOMETRY].MaxOutputComponents;
109 this->Const.MaxFragmentInputComponents = ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxInputComponents;
110 this->Const.MaxGeometryTextureImageUnits = ctx->Const.Program[MESA_SHADER_GEOMETRY].MaxTextureImageUnits;
111 this->Const.MaxGeometryOutputVertices = ctx->Const.MaxGeometryOutputVertices;
112 this->Const.MaxGeometryTotalOutputComponents = ctx->Const.MaxGeometryTotalOutputComponents;
113 this->Const.MaxGeometryUniformComponents = ctx->Const.Program[MESA_SHADER_GEOMETRY].MaxUniformComponents;
114
115 this->Const.MaxVertexAtomicCounters = ctx->Const.Program[MESA_SHADER_VERTEX].MaxAtomicCounters;
116 this->Const.MaxGeometryAtomicCounters = ctx->Const.Program[MESA_SHADER_GEOMETRY].MaxAtomicCounters;
117 this->Const.MaxFragmentAtomicCounters = ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxAtomicCounters;
118 this->Const.MaxCombinedAtomicCounters = ctx->Const.MaxCombinedAtomicCounters;
119 this->Const.MaxAtomicBufferBindings = ctx->Const.MaxAtomicBufferBindings;
120
121 /* Compute shader constants */
122 for (unsigned i = 0; i < Elements(this->Const.MaxComputeWorkGroupCount); i++)
123 this->Const.MaxComputeWorkGroupCount[i] = ctx->Const.MaxComputeWorkGroupCount[i];
124 for (unsigned i = 0; i < Elements(this->Const.MaxComputeWorkGroupSize); i++)
125 this->Const.MaxComputeWorkGroupSize[i] = ctx->Const.MaxComputeWorkGroupSize[i];
126
127 this->Const.MaxImageUnits = ctx->Const.MaxImageUnits;
128 this->Const.MaxCombinedImageUnitsAndFragmentOutputs = ctx->Const.MaxCombinedImageUnitsAndFragmentOutputs;
129 this->Const.MaxImageSamples = ctx->Const.MaxImageSamples;
130 this->Const.MaxVertexImageUniforms = ctx->Const.Program[MESA_SHADER_VERTEX].MaxImageUniforms;
131 this->Const.MaxGeometryImageUniforms = ctx->Const.Program[MESA_SHADER_GEOMETRY].MaxImageUniforms;
132 this->Const.MaxFragmentImageUniforms = ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxImageUniforms;
133 this->Const.MaxCombinedImageUniforms = ctx->Const.MaxCombinedImageUniforms;
134
135 /* ARB_viewport_array */
136 this->Const.MaxViewports = ctx->Const.MaxViewports;
137
138 this->current_function = NULL;
139 this->toplevel_ir = NULL;
140 this->found_return = false;
141 this->all_invariant = false;
142 this->user_structures = NULL;
143 this->num_user_structures = 0;
144
145 /* supported_versions should be large enough to support the known desktop
146 * GLSL versions plus 2 GLES versions (ES2 & ES3)
147 */
148 STATIC_ASSERT((ARRAY_SIZE(known_desktop_glsl_versions) + 2) ==
149 ARRAY_SIZE(this->supported_versions));
150
151 /* Populate the list of supported GLSL versions */
152 /* FINISHME: Once the OpenGL 3.0 'forward compatible' context or
153 * the OpenGL 3.2 Core context is supported, this logic will need
154 * change. Older versions of GLSL are no longer supported
155 * outside the compatibility contexts of 3.x.
156 */
157 this->num_supported_versions = 0;
158 if (_mesa_is_desktop_gl(ctx)) {
159 for (unsigned i = 0; i < ARRAY_SIZE(known_desktop_glsl_versions); i++) {
160 if (known_desktop_glsl_versions[i] <= ctx->Const.GLSLVersion) {
161 this->supported_versions[this->num_supported_versions].ver
162 = known_desktop_glsl_versions[i];
163 this->supported_versions[this->num_supported_versions].es = false;
164 this->num_supported_versions++;
165 }
166 }
167 }
168 if (ctx->API == API_OPENGLES2 || ctx->Extensions.ARB_ES2_compatibility) {
169 this->supported_versions[this->num_supported_versions].ver = 100;
170 this->supported_versions[this->num_supported_versions].es = true;
171 this->num_supported_versions++;
172 }
173 if (_mesa_is_gles3(ctx) || ctx->Extensions.ARB_ES3_compatibility) {
174 this->supported_versions[this->num_supported_versions].ver = 300;
175 this->supported_versions[this->num_supported_versions].es = true;
176 this->num_supported_versions++;
177 }
178
179 /* Create a string for use in error messages to tell the user which GLSL
180 * versions are supported.
181 */
182 char *supported = ralloc_strdup(this, "");
183 for (unsigned i = 0; i < this->num_supported_versions; i++) {
184 unsigned ver = this->supported_versions[i].ver;
185 const char *const prefix = (i == 0)
186 ? ""
187 : ((i == this->num_supported_versions - 1) ? ", and " : ", ");
188 const char *const suffix = (this->supported_versions[i].es) ? " ES" : "";
189
190 ralloc_asprintf_append(& supported, "%s%u.%02u%s",
191 prefix,
192 ver / 100, ver % 100,
193 suffix);
194 }
195
196 this->supported_version_string = supported;
197
198 if (ctx->Const.ForceGLSLExtensionsWarn)
199 _mesa_glsl_process_extension("all", NULL, "warn", NULL, this);
200
201 this->default_uniform_qualifier = new(this) ast_type_qualifier();
202 this->default_uniform_qualifier->flags.q.shared = 1;
203 this->default_uniform_qualifier->flags.q.column_major = 1;
204
205 this->fs_uses_gl_fragcoord = false;
206 this->fs_redeclares_gl_fragcoord = false;
207 this->fs_origin_upper_left = false;
208 this->fs_pixel_center_integer = false;
209 this->fs_redeclares_gl_fragcoord_with_no_layout_qualifiers = false;
210
211 this->gs_input_prim_type_specified = false;
212 this->gs_input_size = 0;
213 this->in_qualifier = new(this) ast_type_qualifier();
214 this->out_qualifier = new(this) ast_type_qualifier();
215 this->early_fragment_tests = false;
216 memset(this->atomic_counter_offsets, 0,
217 sizeof(this->atomic_counter_offsets));
218 this->allow_extension_directive_midshader =
219 ctx->Const.AllowGLSLExtensionDirectiveMidShader;
220 }
221
222 /**
223 * Determine whether the current GLSL version is sufficiently high to support
224 * a certain feature, and generate an error message if it isn't.
225 *
226 * \param required_glsl_version and \c required_glsl_es_version are
227 * interpreted as they are in _mesa_glsl_parse_state::is_version().
228 *
229 * \param locp is the parser location where the error should be reported.
230 *
231 * \param fmt (and additional arguments) constitute a printf-style error
232 * message to report if the version check fails. Information about the
233 * current and required GLSL versions will be appended. So, for example, if
234 * the GLSL version being compiled is 1.20, and check_version(130, 300, locp,
235 * "foo unsupported") is called, the error message will be "foo unsupported in
236 * GLSL 1.20 (GLSL 1.30 or GLSL 3.00 ES required)".
237 */
238 bool
239 _mesa_glsl_parse_state::check_version(unsigned required_glsl_version,
240 unsigned required_glsl_es_version,
241 YYLTYPE *locp, const char *fmt, ...)
242 {
243 if (this->is_version(required_glsl_version, required_glsl_es_version))
244 return true;
245
246 va_list args;
247 va_start(args, fmt);
248 char *problem = ralloc_vasprintf(this, fmt, args);
249 va_end(args);
250 const char *glsl_version_string
251 = glsl_compute_version_string(this, false, required_glsl_version);
252 const char *glsl_es_version_string
253 = glsl_compute_version_string(this, true, required_glsl_es_version);
254 const char *requirement_string = "";
255 if (required_glsl_version && required_glsl_es_version) {
256 requirement_string = ralloc_asprintf(this, " (%s or %s required)",
257 glsl_version_string,
258 glsl_es_version_string);
259 } else if (required_glsl_version) {
260 requirement_string = ralloc_asprintf(this, " (%s required)",
261 glsl_version_string);
262 } else if (required_glsl_es_version) {
263 requirement_string = ralloc_asprintf(this, " (%s required)",
264 glsl_es_version_string);
265 }
266 _mesa_glsl_error(locp, this, "%s in %s%s",
267 problem, this->get_version_string(),
268 requirement_string);
269
270 return false;
271 }
272
273 /**
274 * Process a GLSL #version directive.
275 *
276 * \param version is the integer that follows the #version token.
277 *
278 * \param ident is a string identifier that follows the integer, if any is
279 * present. Otherwise NULL.
280 */
281 void
282 _mesa_glsl_parse_state::process_version_directive(YYLTYPE *locp, int version,
283 const char *ident)
284 {
285 bool es_token_present = false;
286 if (ident) {
287 if (strcmp(ident, "es") == 0) {
288 es_token_present = true;
289 } else if (version >= 150) {
290 if (strcmp(ident, "core") == 0) {
291 /* Accept the token. There's no need to record that this is
292 * a core profile shader since that's the only profile we support.
293 */
294 } else if (strcmp(ident, "compatibility") == 0) {
295 _mesa_glsl_error(locp, this,
296 "the compatibility profile is not supported");
297 } else {
298 _mesa_glsl_error(locp, this,
299 "\"%s\" is not a valid shading language profile; "
300 "if present, it must be \"core\"", ident);
301 }
302 } else {
303 _mesa_glsl_error(locp, this,
304 "illegal text following version number");
305 }
306 }
307
308 this->es_shader = es_token_present;
309 if (version == 100) {
310 if (es_token_present) {
311 _mesa_glsl_error(locp, this,
312 "GLSL 1.00 ES should be selected using "
313 "`#version 100'");
314 } else {
315 this->es_shader = true;
316 }
317 }
318
319 if (this->es_shader) {
320 this->ARB_texture_rectangle_enable = false;
321 }
322
323 this->language_version = version;
324
325 bool supported = false;
326 for (unsigned i = 0; i < this->num_supported_versions; i++) {
327 if (this->supported_versions[i].ver == (unsigned) version
328 && this->supported_versions[i].es == this->es_shader) {
329 supported = true;
330 break;
331 }
332 }
333
334 if (!supported) {
335 _mesa_glsl_error(locp, this, "%s is not supported. "
336 "Supported versions are: %s",
337 this->get_version_string(),
338 this->supported_version_string);
339
340 /* On exit, the language_version must be set to a valid value.
341 * Later calls to _mesa_glsl_initialize_types will misbehave if
342 * the version is invalid.
343 */
344 switch (this->ctx->API) {
345 case API_OPENGL_COMPAT:
346 case API_OPENGL_CORE:
347 this->language_version = this->ctx->Const.GLSLVersion;
348 break;
349
350 case API_OPENGLES:
351 assert(!"Should not get here.");
352 /* FALLTHROUGH */
353
354 case API_OPENGLES2:
355 this->language_version = 100;
356 break;
357 }
358 }
359 }
360
361
362 /**
363 * Translate a gl_shader_stage to a short shader stage name for debug
364 * printouts and error messages.
365 */
366 const char *
367 _mesa_shader_stage_to_string(unsigned stage)
368 {
369 switch (stage) {
370 case MESA_SHADER_VERTEX: return "vertex";
371 case MESA_SHADER_FRAGMENT: return "fragment";
372 case MESA_SHADER_GEOMETRY: return "geometry";
373 }
374
375 assert(!"Should not get here.");
376 return "unknown";
377 }
378
379 /* This helper function will append the given message to the shader's
380 info log and report it via GL_ARB_debug_output. Per that extension,
381 'type' is one of the enum values classifying the message, and
382 'id' is the implementation-defined ID of the given message. */
383 static void
384 _mesa_glsl_msg(const YYLTYPE *locp, _mesa_glsl_parse_state *state,
385 GLenum type, const char *fmt, va_list ap)
386 {
387 bool error = (type == MESA_DEBUG_TYPE_ERROR);
388 GLuint msg_id = 0;
389
390 assert(state->info_log != NULL);
391
392 /* Get the offset that the new message will be written to. */
393 int msg_offset = strlen(state->info_log);
394
395 ralloc_asprintf_append(&state->info_log, "%u:%u(%u): %s: ",
396 locp->source,
397 locp->first_line,
398 locp->first_column,
399 error ? "error" : "warning");
400 ralloc_vasprintf_append(&state->info_log, fmt, ap);
401
402 const char *const msg = &state->info_log[msg_offset];
403 struct gl_context *ctx = state->ctx;
404
405 /* Report the error via GL_ARB_debug_output. */
406 _mesa_shader_debug(ctx, type, &msg_id, msg, strlen(msg));
407
408 ralloc_strcat(&state->info_log, "\n");
409 }
410
411 void
412 _mesa_glsl_error(YYLTYPE *locp, _mesa_glsl_parse_state *state,
413 const char *fmt, ...)
414 {
415 va_list ap;
416
417 state->error = true;
418
419 va_start(ap, fmt);
420 _mesa_glsl_msg(locp, state, MESA_DEBUG_TYPE_ERROR, fmt, ap);
421 va_end(ap);
422 }
423
424
425 void
426 _mesa_glsl_warning(const YYLTYPE *locp, _mesa_glsl_parse_state *state,
427 const char *fmt, ...)
428 {
429 va_list ap;
430
431 va_start(ap, fmt);
432 _mesa_glsl_msg(locp, state, MESA_DEBUG_TYPE_OTHER, fmt, ap);
433 va_end(ap);
434 }
435
436
437 /**
438 * Enum representing the possible behaviors that can be specified in
439 * an #extension directive.
440 */
441 enum ext_behavior {
442 extension_disable,
443 extension_enable,
444 extension_require,
445 extension_warn
446 };
447
448 /**
449 * Element type for _mesa_glsl_supported_extensions
450 */
451 struct _mesa_glsl_extension {
452 /**
453 * Name of the extension when referred to in a GLSL extension
454 * statement
455 */
456 const char *name;
457
458 /** True if this extension is available to desktop GL shaders */
459 bool avail_in_GL;
460
461 /** True if this extension is available to GLES shaders */
462 bool avail_in_ES;
463
464 /**
465 * Flag in the gl_extensions struct indicating whether this
466 * extension is supported by the driver, or
467 * &gl_extensions::dummy_true if supported by all drivers.
468 *
469 * Note: the type (GLboolean gl_extensions::*) is a "pointer to
470 * member" type, the type-safe alternative to the "offsetof" macro.
471 * In a nutshell:
472 *
473 * - foo bar::* p declares p to be an "offset" to a field of type
474 * foo that exists within struct bar
475 * - &bar::baz computes the "offset" of field baz within struct bar
476 * - x.*p accesses the field of x that exists at "offset" p
477 * - x->*p is equivalent to (*x).*p
478 */
479 const GLboolean gl_extensions::* supported_flag;
480
481 /**
482 * Flag in the _mesa_glsl_parse_state struct that should be set
483 * when this extension is enabled.
484 *
485 * See note in _mesa_glsl_extension::supported_flag about "pointer
486 * to member" types.
487 */
488 bool _mesa_glsl_parse_state::* enable_flag;
489
490 /**
491 * Flag in the _mesa_glsl_parse_state struct that should be set
492 * when the shader requests "warn" behavior for this extension.
493 *
494 * See note in _mesa_glsl_extension::supported_flag about "pointer
495 * to member" types.
496 */
497 bool _mesa_glsl_parse_state::* warn_flag;
498
499
500 bool compatible_with_state(const _mesa_glsl_parse_state *state) const;
501 void set_flags(_mesa_glsl_parse_state *state, ext_behavior behavior) const;
502 };
503
504 #define EXT(NAME, GL, ES, SUPPORTED_FLAG) \
505 { "GL_" #NAME, GL, ES, &gl_extensions::SUPPORTED_FLAG, \
506 &_mesa_glsl_parse_state::NAME##_enable, \
507 &_mesa_glsl_parse_state::NAME##_warn }
508
509 /**
510 * Table of extensions that can be enabled/disabled within a shader,
511 * and the conditions under which they are supported.
512 */
513 static const _mesa_glsl_extension _mesa_glsl_supported_extensions[] = {
514 /* API availability */
515 /* name GL ES supported flag */
516
517 /* ARB extensions go here, sorted alphabetically.
518 */
519 EXT(ARB_arrays_of_arrays, true, false, ARB_arrays_of_arrays),
520 EXT(ARB_compute_shader, true, false, ARB_compute_shader),
521 EXT(ARB_conservative_depth, true, false, ARB_conservative_depth),
522 EXT(ARB_derivative_control, true, false, ARB_derivative_control),
523 EXT(ARB_draw_buffers, true, false, dummy_true),
524 EXT(ARB_draw_instanced, true, false, ARB_draw_instanced),
525 EXT(ARB_explicit_attrib_location, true, false, ARB_explicit_attrib_location),
526 EXT(ARB_explicit_uniform_location, true, false, ARB_explicit_uniform_location),
527 EXT(ARB_fragment_coord_conventions, true, false, ARB_fragment_coord_conventions),
528 EXT(ARB_fragment_layer_viewport, true, false, ARB_fragment_layer_viewport),
529 EXT(ARB_gpu_shader5, true, false, ARB_gpu_shader5),
530 EXT(ARB_sample_shading, true, false, ARB_sample_shading),
531 EXT(ARB_separate_shader_objects, true, false, dummy_true),
532 EXT(ARB_shader_atomic_counters, true, false, ARB_shader_atomic_counters),
533 EXT(ARB_shader_bit_encoding, true, false, ARB_shader_bit_encoding),
534 EXT(ARB_shader_image_load_store, true, false, ARB_shader_image_load_store),
535 EXT(ARB_shader_stencil_export, true, false, ARB_shader_stencil_export),
536 EXT(ARB_shader_texture_lod, true, false, ARB_shader_texture_lod),
537 EXT(ARB_shading_language_420pack, true, false, ARB_shading_language_420pack),
538 EXT(ARB_shading_language_packing, true, false, ARB_shading_language_packing),
539 EXT(ARB_texture_cube_map_array, true, false, ARB_texture_cube_map_array),
540 EXT(ARB_texture_gather, true, false, ARB_texture_gather),
541 EXT(ARB_texture_multisample, true, false, ARB_texture_multisample),
542 EXT(ARB_texture_query_levels, true, false, ARB_texture_query_levels),
543 EXT(ARB_texture_query_lod, true, false, ARB_texture_query_lod),
544 EXT(ARB_texture_rectangle, true, false, dummy_true),
545 EXT(ARB_uniform_buffer_object, true, false, ARB_uniform_buffer_object),
546 EXT(ARB_viewport_array, true, false, ARB_viewport_array),
547
548 /* KHR extensions go here, sorted alphabetically.
549 */
550
551 /* OES extensions go here, sorted alphabetically.
552 */
553 EXT(OES_EGL_image_external, false, true, OES_EGL_image_external),
554 EXT(OES_standard_derivatives, false, true, OES_standard_derivatives),
555 EXT(OES_texture_3D, false, true, EXT_texture3D),
556
557 /* All other extensions go here, sorted alphabetically.
558 */
559 EXT(AMD_conservative_depth, true, false, ARB_conservative_depth),
560 EXT(AMD_shader_stencil_export, true, false, ARB_shader_stencil_export),
561 EXT(AMD_shader_trinary_minmax, true, false, dummy_true),
562 EXT(AMD_vertex_shader_layer, true, false, AMD_vertex_shader_layer),
563 EXT(AMD_vertex_shader_viewport_index, true, false, AMD_vertex_shader_viewport_index),
564 EXT(EXT_draw_buffers, false, true, dummy_true),
565 EXT(EXT_separate_shader_objects, false, true, dummy_true),
566 EXT(EXT_shader_integer_mix, true, true, EXT_shader_integer_mix),
567 EXT(EXT_texture_array, true, false, EXT_texture_array),
568 };
569
570 #undef EXT
571
572
573 /**
574 * Determine whether a given extension is compatible with the target,
575 * API, and extension information in the current parser state.
576 */
577 bool _mesa_glsl_extension::compatible_with_state(const _mesa_glsl_parse_state *
578 state) const
579 {
580 /* Check that this extension matches whether we are compiling
581 * for desktop GL or GLES.
582 */
583 if (state->es_shader) {
584 if (!this->avail_in_ES) return false;
585 } else {
586 if (!this->avail_in_GL) return false;
587 }
588
589 /* Check that this extension is supported by the OpenGL
590 * implementation.
591 *
592 * Note: the ->* operator indexes into state->extensions by the
593 * offset this->supported_flag. See
594 * _mesa_glsl_extension::supported_flag for more info.
595 */
596 return state->extensions->*(this->supported_flag);
597 }
598
599 /**
600 * Set the appropriate flags in the parser state to establish the
601 * given behavior for this extension.
602 */
603 void _mesa_glsl_extension::set_flags(_mesa_glsl_parse_state *state,
604 ext_behavior behavior) const
605 {
606 /* Note: the ->* operator indexes into state by the
607 * offsets this->enable_flag and this->warn_flag. See
608 * _mesa_glsl_extension::supported_flag for more info.
609 */
610 state->*(this->enable_flag) = (behavior != extension_disable);
611 state->*(this->warn_flag) = (behavior == extension_warn);
612 }
613
614 /**
615 * Find an extension by name in _mesa_glsl_supported_extensions. If
616 * the name is not found, return NULL.
617 */
618 static const _mesa_glsl_extension *find_extension(const char *name)
619 {
620 for (unsigned i = 0; i < Elements(_mesa_glsl_supported_extensions); ++i) {
621 if (strcmp(name, _mesa_glsl_supported_extensions[i].name) == 0) {
622 return &_mesa_glsl_supported_extensions[i];
623 }
624 }
625 return NULL;
626 }
627
628
629 bool
630 _mesa_glsl_process_extension(const char *name, YYLTYPE *name_locp,
631 const char *behavior_string, YYLTYPE *behavior_locp,
632 _mesa_glsl_parse_state *state)
633 {
634 ext_behavior behavior;
635 if (strcmp(behavior_string, "warn") == 0) {
636 behavior = extension_warn;
637 } else if (strcmp(behavior_string, "require") == 0) {
638 behavior = extension_require;
639 } else if (strcmp(behavior_string, "enable") == 0) {
640 behavior = extension_enable;
641 } else if (strcmp(behavior_string, "disable") == 0) {
642 behavior = extension_disable;
643 } else {
644 _mesa_glsl_error(behavior_locp, state,
645 "unknown extension behavior `%s'",
646 behavior_string);
647 return false;
648 }
649
650 if (strcmp(name, "all") == 0) {
651 if ((behavior == extension_enable) || (behavior == extension_require)) {
652 _mesa_glsl_error(name_locp, state, "cannot %s all extensions",
653 (behavior == extension_enable)
654 ? "enable" : "require");
655 return false;
656 } else {
657 for (unsigned i = 0;
658 i < Elements(_mesa_glsl_supported_extensions); ++i) {
659 const _mesa_glsl_extension *extension
660 = &_mesa_glsl_supported_extensions[i];
661 if (extension->compatible_with_state(state)) {
662 _mesa_glsl_supported_extensions[i].set_flags(state, behavior);
663 }
664 }
665 }
666 } else {
667 const _mesa_glsl_extension *extension = find_extension(name);
668 if (extension && extension->compatible_with_state(state)) {
669 extension->set_flags(state, behavior);
670 } else {
671 static const char fmt[] = "extension `%s' unsupported in %s shader";
672
673 if (behavior == extension_require) {
674 _mesa_glsl_error(name_locp, state, fmt,
675 name, _mesa_shader_stage_to_string(state->stage));
676 return false;
677 } else {
678 _mesa_glsl_warning(name_locp, state, fmt,
679 name, _mesa_shader_stage_to_string(state->stage));
680 }
681 }
682 }
683
684 return true;
685 }
686
687
688 /**
689 * Recurses through <type> and <expr> if <expr> is an aggregate initializer
690 * and sets <expr>'s <constructor_type> field to <type>. Gives later functions
691 * (process_array_constructor, et al) sufficient information to do type
692 * checking.
693 *
694 * Operates on assignments involving an aggregate initializer. E.g.,
695 *
696 * vec4 pos = {1.0, -1.0, 0.0, 1.0};
697 *
698 * or more ridiculously,
699 *
700 * struct S {
701 * vec4 v[2];
702 * };
703 *
704 * struct {
705 * S a[2], b;
706 * int c;
707 * } aggregate = {
708 * {
709 * {
710 * {
711 * {1.0, 2.0, 3.0, 4.0}, // a[0].v[0]
712 * {5.0, 6.0, 7.0, 8.0} // a[0].v[1]
713 * } // a[0].v
714 * }, // a[0]
715 * {
716 * {
717 * {1.0, 2.0, 3.0, 4.0}, // a[1].v[0]
718 * {5.0, 6.0, 7.0, 8.0} // a[1].v[1]
719 * } // a[1].v
720 * } // a[1]
721 * }, // a
722 * {
723 * {
724 * {1.0, 2.0, 3.0, 4.0}, // b.v[0]
725 * {5.0, 6.0, 7.0, 8.0} // b.v[1]
726 * } // b.v
727 * }, // b
728 * 4 // c
729 * };
730 *
731 * This pass is necessary because the right-hand side of <type> e = { ... }
732 * doesn't contain sufficient information to determine if the types match.
733 */
734 void
735 _mesa_ast_set_aggregate_type(const glsl_type *type,
736 ast_expression *expr)
737 {
738 ast_aggregate_initializer *ai = (ast_aggregate_initializer *)expr;
739 ai->constructor_type = type;
740
741 /* If the aggregate is an array, recursively set its elements' types. */
742 if (type->is_array()) {
743 /* Each array element has the type type->element_type().
744 *
745 * E.g., if <type> if struct S[2] we want to set each element's type to
746 * struct S.
747 */
748 for (exec_node *expr_node = ai->expressions.head;
749 !expr_node->is_tail_sentinel();
750 expr_node = expr_node->next) {
751 ast_expression *expr = exec_node_data(ast_expression, expr_node,
752 link);
753
754 if (expr->oper == ast_aggregate)
755 _mesa_ast_set_aggregate_type(type->element_type(), expr);
756 }
757
758 /* If the aggregate is a struct, recursively set its fields' types. */
759 } else if (type->is_record()) {
760 exec_node *expr_node = ai->expressions.head;
761
762 /* Iterate through the struct's fields. */
763 for (unsigned i = 0; !expr_node->is_tail_sentinel() && i < type->length;
764 i++, expr_node = expr_node->next) {
765 ast_expression *expr = exec_node_data(ast_expression, expr_node,
766 link);
767
768 if (expr->oper == ast_aggregate) {
769 _mesa_ast_set_aggregate_type(type->fields.structure[i].type, expr);
770 }
771 }
772 /* If the aggregate is a matrix, set its columns' types. */
773 } else if (type->is_matrix()) {
774 for (exec_node *expr_node = ai->expressions.head;
775 !expr_node->is_tail_sentinel();
776 expr_node = expr_node->next) {
777 ast_expression *expr = exec_node_data(ast_expression, expr_node,
778 link);
779
780 if (expr->oper == ast_aggregate)
781 _mesa_ast_set_aggregate_type(type->column_type(), expr);
782 }
783 }
784 }
785
786
787 void
788 _mesa_ast_type_qualifier_print(const struct ast_type_qualifier *q)
789 {
790 if (q->flags.q.constant)
791 printf("const ");
792
793 if (q->flags.q.invariant)
794 printf("invariant ");
795
796 if (q->flags.q.attribute)
797 printf("attribute ");
798
799 if (q->flags.q.varying)
800 printf("varying ");
801
802 if (q->flags.q.in && q->flags.q.out)
803 printf("inout ");
804 else {
805 if (q->flags.q.in)
806 printf("in ");
807
808 if (q->flags.q.out)
809 printf("out ");
810 }
811
812 if (q->flags.q.centroid)
813 printf("centroid ");
814 if (q->flags.q.sample)
815 printf("sample ");
816 if (q->flags.q.uniform)
817 printf("uniform ");
818 if (q->flags.q.smooth)
819 printf("smooth ");
820 if (q->flags.q.flat)
821 printf("flat ");
822 if (q->flags.q.noperspective)
823 printf("noperspective ");
824 }
825
826
827 void
828 ast_node::print(void) const
829 {
830 printf("unhandled node ");
831 }
832
833
834 ast_node::ast_node(void)
835 {
836 this->location.source = 0;
837 this->location.first_line = 0;
838 this->location.first_column = 0;
839 this->location.last_line = 0;
840 this->location.last_column = 0;
841 }
842
843
844 static void
845 ast_opt_array_dimensions_print(const ast_array_specifier *array_specifier)
846 {
847 if (array_specifier)
848 array_specifier->print();
849 }
850
851
852 void
853 ast_compound_statement::print(void) const
854 {
855 printf("{\n");
856
857 foreach_list_typed(ast_node, ast, link, &this->statements) {
858 ast->print();
859 }
860
861 printf("}\n");
862 }
863
864
865 ast_compound_statement::ast_compound_statement(int new_scope,
866 ast_node *statements)
867 {
868 this->new_scope = new_scope;
869
870 if (statements != NULL) {
871 this->statements.push_degenerate_list_at_head(&statements->link);
872 }
873 }
874
875
876 void
877 ast_expression::print(void) const
878 {
879 switch (oper) {
880 case ast_assign:
881 case ast_mul_assign:
882 case ast_div_assign:
883 case ast_mod_assign:
884 case ast_add_assign:
885 case ast_sub_assign:
886 case ast_ls_assign:
887 case ast_rs_assign:
888 case ast_and_assign:
889 case ast_xor_assign:
890 case ast_or_assign:
891 subexpressions[0]->print();
892 printf("%s ", operator_string(oper));
893 subexpressions[1]->print();
894 break;
895
896 case ast_field_selection:
897 subexpressions[0]->print();
898 printf(". %s ", primary_expression.identifier);
899 break;
900
901 case ast_plus:
902 case ast_neg:
903 case ast_bit_not:
904 case ast_logic_not:
905 case ast_pre_inc:
906 case ast_pre_dec:
907 printf("%s ", operator_string(oper));
908 subexpressions[0]->print();
909 break;
910
911 case ast_post_inc:
912 case ast_post_dec:
913 subexpressions[0]->print();
914 printf("%s ", operator_string(oper));
915 break;
916
917 case ast_conditional:
918 subexpressions[0]->print();
919 printf("? ");
920 subexpressions[1]->print();
921 printf(": ");
922 subexpressions[2]->print();
923 break;
924
925 case ast_array_index:
926 subexpressions[0]->print();
927 printf("[ ");
928 subexpressions[1]->print();
929 printf("] ");
930 break;
931
932 case ast_function_call: {
933 subexpressions[0]->print();
934 printf("( ");
935
936 foreach_list_typed (ast_node, ast, link, &this->expressions) {
937 if (&ast->link != this->expressions.get_head())
938 printf(", ");
939
940 ast->print();
941 }
942
943 printf(") ");
944 break;
945 }
946
947 case ast_identifier:
948 printf("%s ", primary_expression.identifier);
949 break;
950
951 case ast_int_constant:
952 printf("%d ", primary_expression.int_constant);
953 break;
954
955 case ast_uint_constant:
956 printf("%u ", primary_expression.uint_constant);
957 break;
958
959 case ast_float_constant:
960 printf("%f ", primary_expression.float_constant);
961 break;
962
963 case ast_bool_constant:
964 printf("%s ",
965 primary_expression.bool_constant
966 ? "true" : "false");
967 break;
968
969 case ast_sequence: {
970 printf("( ");
971 foreach_list_typed (ast_node, ast, link, & this->expressions) {
972 if (&ast->link != this->expressions.get_head())
973 printf(", ");
974
975 ast->print();
976 }
977 printf(") ");
978 break;
979 }
980
981 case ast_aggregate: {
982 printf("{ ");
983 foreach_list_typed (ast_node, ast, link, & this->expressions) {
984 if (&ast->link != this->expressions.get_head())
985 printf(", ");
986
987 ast->print();
988 }
989 printf("} ");
990 break;
991 }
992
993 default:
994 assert(0);
995 break;
996 }
997 }
998
999 ast_expression::ast_expression(int oper,
1000 ast_expression *ex0,
1001 ast_expression *ex1,
1002 ast_expression *ex2) :
1003 primary_expression()
1004 {
1005 this->oper = ast_operators(oper);
1006 this->subexpressions[0] = ex0;
1007 this->subexpressions[1] = ex1;
1008 this->subexpressions[2] = ex2;
1009 this->non_lvalue_description = NULL;
1010 }
1011
1012
1013 void
1014 ast_expression_statement::print(void) const
1015 {
1016 if (expression)
1017 expression->print();
1018
1019 printf("; ");
1020 }
1021
1022
1023 ast_expression_statement::ast_expression_statement(ast_expression *ex) :
1024 expression(ex)
1025 {
1026 /* empty */
1027 }
1028
1029
1030 void
1031 ast_function::print(void) const
1032 {
1033 return_type->print();
1034 printf(" %s (", identifier);
1035
1036 foreach_list_typed(ast_node, ast, link, & this->parameters) {
1037 ast->print();
1038 }
1039
1040 printf(")");
1041 }
1042
1043
1044 ast_function::ast_function(void)
1045 : return_type(NULL), identifier(NULL), is_definition(false),
1046 signature(NULL)
1047 {
1048 /* empty */
1049 }
1050
1051
1052 void
1053 ast_fully_specified_type::print(void) const
1054 {
1055 _mesa_ast_type_qualifier_print(& qualifier);
1056 specifier->print();
1057 }
1058
1059
1060 void
1061 ast_parameter_declarator::print(void) const
1062 {
1063 type->print();
1064 if (identifier)
1065 printf("%s ", identifier);
1066 ast_opt_array_dimensions_print(array_specifier);
1067 }
1068
1069
1070 void
1071 ast_function_definition::print(void) const
1072 {
1073 prototype->print();
1074 body->print();
1075 }
1076
1077
1078 void
1079 ast_declaration::print(void) const
1080 {
1081 printf("%s ", identifier);
1082 ast_opt_array_dimensions_print(array_specifier);
1083
1084 if (initializer) {
1085 printf("= ");
1086 initializer->print();
1087 }
1088 }
1089
1090
1091 ast_declaration::ast_declaration(const char *identifier,
1092 ast_array_specifier *array_specifier,
1093 ast_expression *initializer)
1094 {
1095 this->identifier = identifier;
1096 this->array_specifier = array_specifier;
1097 this->initializer = initializer;
1098 }
1099
1100
1101 void
1102 ast_declarator_list::print(void) const
1103 {
1104 assert(type || invariant);
1105
1106 if (type)
1107 type->print();
1108 else if (invariant)
1109 printf("invariant ");
1110 else
1111 printf("precise ");
1112
1113 foreach_list_typed (ast_node, ast, link, & this->declarations) {
1114 if (&ast->link != this->declarations.get_head())
1115 printf(", ");
1116
1117 ast->print();
1118 }
1119
1120 printf("; ");
1121 }
1122
1123
1124 ast_declarator_list::ast_declarator_list(ast_fully_specified_type *type)
1125 {
1126 this->type = type;
1127 this->invariant = false;
1128 this->precise = false;
1129 }
1130
1131 void
1132 ast_jump_statement::print(void) const
1133 {
1134 switch (mode) {
1135 case ast_continue:
1136 printf("continue; ");
1137 break;
1138 case ast_break:
1139 printf("break; ");
1140 break;
1141 case ast_return:
1142 printf("return ");
1143 if (opt_return_value)
1144 opt_return_value->print();
1145
1146 printf("; ");
1147 break;
1148 case ast_discard:
1149 printf("discard; ");
1150 break;
1151 }
1152 }
1153
1154
1155 ast_jump_statement::ast_jump_statement(int mode, ast_expression *return_value)
1156 : opt_return_value(NULL)
1157 {
1158 this->mode = ast_jump_modes(mode);
1159
1160 if (mode == ast_return)
1161 opt_return_value = return_value;
1162 }
1163
1164
1165 void
1166 ast_selection_statement::print(void) const
1167 {
1168 printf("if ( ");
1169 condition->print();
1170 printf(") ");
1171
1172 then_statement->print();
1173
1174 if (else_statement) {
1175 printf("else ");
1176 else_statement->print();
1177 }
1178
1179 }
1180
1181
1182 ast_selection_statement::ast_selection_statement(ast_expression *condition,
1183 ast_node *then_statement,
1184 ast_node *else_statement)
1185 {
1186 this->condition = condition;
1187 this->then_statement = then_statement;
1188 this->else_statement = else_statement;
1189 }
1190
1191
1192 void
1193 ast_switch_statement::print(void) const
1194 {
1195 printf("switch ( ");
1196 test_expression->print();
1197 printf(") ");
1198
1199 body->print();
1200 }
1201
1202
1203 ast_switch_statement::ast_switch_statement(ast_expression *test_expression,
1204 ast_node *body)
1205 {
1206 this->test_expression = test_expression;
1207 this->body = body;
1208 }
1209
1210
1211 void
1212 ast_switch_body::print(void) const
1213 {
1214 printf("{\n");
1215 if (stmts != NULL) {
1216 stmts->print();
1217 }
1218 printf("}\n");
1219 }
1220
1221
1222 ast_switch_body::ast_switch_body(ast_case_statement_list *stmts)
1223 {
1224 this->stmts = stmts;
1225 }
1226
1227
1228 void ast_case_label::print(void) const
1229 {
1230 if (test_value != NULL) {
1231 printf("case ");
1232 test_value->print();
1233 printf(": ");
1234 } else {
1235 printf("default: ");
1236 }
1237 }
1238
1239
1240 ast_case_label::ast_case_label(ast_expression *test_value)
1241 {
1242 this->test_value = test_value;
1243 }
1244
1245
1246 void ast_case_label_list::print(void) const
1247 {
1248 foreach_list_typed(ast_node, ast, link, & this->labels) {
1249 ast->print();
1250 }
1251 printf("\n");
1252 }
1253
1254
1255 ast_case_label_list::ast_case_label_list(void)
1256 {
1257 }
1258
1259
1260 void ast_case_statement::print(void) const
1261 {
1262 labels->print();
1263 foreach_list_typed(ast_node, ast, link, & this->stmts) {
1264 ast->print();
1265 printf("\n");
1266 }
1267 }
1268
1269
1270 ast_case_statement::ast_case_statement(ast_case_label_list *labels)
1271 {
1272 this->labels = labels;
1273 }
1274
1275
1276 void ast_case_statement_list::print(void) const
1277 {
1278 foreach_list_typed(ast_node, ast, link, & this->cases) {
1279 ast->print();
1280 }
1281 }
1282
1283
1284 ast_case_statement_list::ast_case_statement_list(void)
1285 {
1286 }
1287
1288
1289 void
1290 ast_iteration_statement::print(void) const
1291 {
1292 switch (mode) {
1293 case ast_for:
1294 printf("for( ");
1295 if (init_statement)
1296 init_statement->print();
1297 printf("; ");
1298
1299 if (condition)
1300 condition->print();
1301 printf("; ");
1302
1303 if (rest_expression)
1304 rest_expression->print();
1305 printf(") ");
1306
1307 body->print();
1308 break;
1309
1310 case ast_while:
1311 printf("while ( ");
1312 if (condition)
1313 condition->print();
1314 printf(") ");
1315 body->print();
1316 break;
1317
1318 case ast_do_while:
1319 printf("do ");
1320 body->print();
1321 printf("while ( ");
1322 if (condition)
1323 condition->print();
1324 printf("); ");
1325 break;
1326 }
1327 }
1328
1329
1330 ast_iteration_statement::ast_iteration_statement(int mode,
1331 ast_node *init,
1332 ast_node *condition,
1333 ast_expression *rest_expression,
1334 ast_node *body)
1335 {
1336 this->mode = ast_iteration_modes(mode);
1337 this->init_statement = init;
1338 this->condition = condition;
1339 this->rest_expression = rest_expression;
1340 this->body = body;
1341 }
1342
1343
1344 void
1345 ast_struct_specifier::print(void) const
1346 {
1347 printf("struct %s { ", name);
1348 foreach_list_typed(ast_node, ast, link, &this->declarations) {
1349 ast->print();
1350 }
1351 printf("} ");
1352 }
1353
1354
1355 ast_struct_specifier::ast_struct_specifier(const char *identifier,
1356 ast_declarator_list *declarator_list)
1357 {
1358 if (identifier == NULL) {
1359 static mtx_t mutex = _MTX_INITIALIZER_NP;
1360 static unsigned anon_count = 1;
1361 unsigned count;
1362
1363 mtx_lock(&mutex);
1364 count = anon_count++;
1365 mtx_unlock(&mutex);
1366
1367 identifier = ralloc_asprintf(this, "#anon_struct_%04x", count);
1368 }
1369 name = identifier;
1370 this->declarations.push_degenerate_list_at_head(&declarator_list->link);
1371 is_declaration = true;
1372 }
1373
1374 static void
1375 set_shader_inout_layout(struct gl_shader *shader,
1376 struct _mesa_glsl_parse_state *state)
1377 {
1378 if (shader->Stage != MESA_SHADER_GEOMETRY) {
1379 /* Should have been prevented by the parser. */
1380 assert(!state->in_qualifier->flags.i);
1381 assert(!state->out_qualifier->flags.i);
1382 }
1383
1384 if (shader->Stage != MESA_SHADER_COMPUTE) {
1385 /* Should have been prevented by the parser. */
1386 assert(!state->cs_input_local_size_specified);
1387 }
1388
1389 if (shader->Stage != MESA_SHADER_FRAGMENT) {
1390 /* Should have been prevented by the parser. */
1391 assert(!state->fs_uses_gl_fragcoord);
1392 assert(!state->fs_redeclares_gl_fragcoord);
1393 assert(!state->fs_pixel_center_integer);
1394 assert(!state->fs_origin_upper_left);
1395 }
1396
1397 switch (shader->Stage) {
1398 case MESA_SHADER_GEOMETRY:
1399 shader->Geom.VerticesOut = 0;
1400 if (state->out_qualifier->flags.q.max_vertices)
1401 shader->Geom.VerticesOut = state->out_qualifier->max_vertices;
1402
1403 if (state->gs_input_prim_type_specified) {
1404 shader->Geom.InputType = state->in_qualifier->prim_type;
1405 } else {
1406 shader->Geom.InputType = PRIM_UNKNOWN;
1407 }
1408
1409 if (state->out_qualifier->flags.q.prim_type) {
1410 shader->Geom.OutputType = state->out_qualifier->prim_type;
1411 } else {
1412 shader->Geom.OutputType = PRIM_UNKNOWN;
1413 }
1414
1415 shader->Geom.Invocations = 0;
1416 if (state->in_qualifier->flags.q.invocations)
1417 shader->Geom.Invocations = state->in_qualifier->invocations;
1418 break;
1419
1420 case MESA_SHADER_COMPUTE:
1421 if (state->cs_input_local_size_specified) {
1422 for (int i = 0; i < 3; i++)
1423 shader->Comp.LocalSize[i] = state->cs_input_local_size[i];
1424 } else {
1425 for (int i = 0; i < 3; i++)
1426 shader->Comp.LocalSize[i] = 0;
1427 }
1428 break;
1429
1430 case MESA_SHADER_FRAGMENT:
1431 shader->redeclares_gl_fragcoord = state->fs_redeclares_gl_fragcoord;
1432 shader->uses_gl_fragcoord = state->fs_uses_gl_fragcoord;
1433 shader->pixel_center_integer = state->fs_pixel_center_integer;
1434 shader->origin_upper_left = state->fs_origin_upper_left;
1435 shader->ARB_fragment_coord_conventions_enable =
1436 state->ARB_fragment_coord_conventions_enable;
1437 break;
1438
1439 default:
1440 /* Nothing to do. */
1441 break;
1442 }
1443 }
1444
1445 extern "C" {
1446
1447 void
1448 _mesa_glsl_compile_shader(struct gl_context *ctx, struct gl_shader *shader,
1449 bool dump_ast, bool dump_hir)
1450 {
1451 struct _mesa_glsl_parse_state *state =
1452 new(shader) _mesa_glsl_parse_state(ctx, shader->Stage, shader);
1453 const char *source = shader->Source;
1454
1455 if (ctx->Const.GenerateTemporaryNames)
1456 (void) p_atomic_cmpxchg(&ir_variable::temporaries_allocate_names,
1457 false, true);
1458
1459 state->error = glcpp_preprocess(state, &source, &state->info_log,
1460 &ctx->Extensions, ctx);
1461
1462 if (!state->error) {
1463 _mesa_glsl_lexer_ctor(state, source);
1464 _mesa_glsl_parse(state);
1465 _mesa_glsl_lexer_dtor(state);
1466 }
1467
1468 if (dump_ast) {
1469 foreach_list_typed(ast_node, ast, link, &state->translation_unit) {
1470 ast->print();
1471 }
1472 printf("\n\n");
1473 }
1474
1475 ralloc_free(shader->ir);
1476 shader->ir = new(shader) exec_list;
1477 if (!state->error && !state->translation_unit.is_empty())
1478 _mesa_ast_to_hir(shader->ir, state);
1479
1480 if (!state->error) {
1481 validate_ir_tree(shader->ir);
1482
1483 /* Print out the unoptimized IR. */
1484 if (dump_hir) {
1485 _mesa_print_ir(stdout, shader->ir, state);
1486 }
1487 }
1488
1489
1490 if (!state->error && !shader->ir->is_empty()) {
1491 struct gl_shader_compiler_options *options =
1492 &ctx->Const.ShaderCompilerOptions[shader->Stage];
1493
1494 /* Do some optimization at compile time to reduce shader IR size
1495 * and reduce later work if the same shader is linked multiple times
1496 */
1497 while (do_common_optimization(shader->ir, false, false, options,
1498 ctx->Const.NativeIntegers))
1499 ;
1500
1501 validate_ir_tree(shader->ir);
1502
1503 enum ir_variable_mode other;
1504 switch (shader->Stage) {
1505 case MESA_SHADER_VERTEX:
1506 other = ir_var_shader_in;
1507 break;
1508 case MESA_SHADER_FRAGMENT:
1509 other = ir_var_shader_out;
1510 break;
1511 default:
1512 /* Something invalid to ensure optimize_dead_builtin_uniforms
1513 * doesn't remove anything other than uniforms or constants.
1514 */
1515 other = ir_var_mode_count;
1516 break;
1517 }
1518
1519 optimize_dead_builtin_variables(shader->ir, other);
1520
1521 validate_ir_tree(shader->ir);
1522 }
1523
1524 if (shader->InfoLog)
1525 ralloc_free(shader->InfoLog);
1526
1527 shader->symbols = new(shader->ir) glsl_symbol_table;
1528 shader->CompileStatus = !state->error;
1529 shader->InfoLog = state->info_log;
1530 shader->Version = state->language_version;
1531 shader->IsES = state->es_shader;
1532 shader->uses_builtin_functions = state->uses_builtin_functions;
1533
1534 if (!state->error)
1535 set_shader_inout_layout(shader, state);
1536
1537 /* Retain any live IR, but trash the rest. */
1538 reparent_ir(shader->ir, shader->ir);
1539
1540 /* Destroy the symbol table. Create a new symbol table that contains only
1541 * the variables and functions that still exist in the IR. The symbol
1542 * table will be used later during linking.
1543 *
1544 * There must NOT be any freed objects still referenced by the symbol
1545 * table. That could cause the linker to dereference freed memory.
1546 *
1547 * We don't have to worry about types or interface-types here because those
1548 * are fly-weights that are looked up by glsl_type.
1549 */
1550 foreach_in_list (ir_instruction, ir, shader->ir) {
1551 switch (ir->ir_type) {
1552 case ir_type_function:
1553 shader->symbols->add_function((ir_function *) ir);
1554 break;
1555 case ir_type_variable: {
1556 ir_variable *const var = (ir_variable *) ir;
1557
1558 if (var->data.mode != ir_var_temporary)
1559 shader->symbols->add_variable(var);
1560 break;
1561 }
1562 default:
1563 break;
1564 }
1565 }
1566
1567 delete state->symbols;
1568 ralloc_free(state);
1569 }
1570
1571 } /* extern "C" */
1572 /**
1573 * Do the set of common optimizations passes
1574 *
1575 * \param ir List of instructions to be optimized
1576 * \param linked Is the shader linked? This enables
1577 * optimizations passes that remove code at
1578 * global scope and could cause linking to
1579 * fail.
1580 * \param uniform_locations_assigned Have locations already been assigned for
1581 * uniforms? This prevents the declarations
1582 * of unused uniforms from being removed.
1583 * The setting of this flag only matters if
1584 * \c linked is \c true.
1585 * \param max_unroll_iterations Maximum number of loop iterations to be
1586 * unrolled. Setting to 0 disables loop
1587 * unrolling.
1588 * \param options The driver's preferred shader options.
1589 */
1590 bool
1591 do_common_optimization(exec_list *ir, bool linked,
1592 bool uniform_locations_assigned,
1593 const struct gl_shader_compiler_options *options,
1594 bool native_integers)
1595 {
1596 GLboolean progress = GL_FALSE;
1597
1598 progress = lower_instructions(ir, SUB_TO_ADD_NEG) || progress;
1599
1600 if (linked) {
1601 progress = do_function_inlining(ir) || progress;
1602 progress = do_dead_functions(ir) || progress;
1603 progress = do_structure_splitting(ir) || progress;
1604 }
1605 progress = do_if_simplification(ir) || progress;
1606 progress = opt_flatten_nested_if_blocks(ir) || progress;
1607 progress = do_copy_propagation(ir) || progress;
1608 progress = do_copy_propagation_elements(ir) || progress;
1609
1610 if (options->OptimizeForAOS && !linked)
1611 progress = opt_flip_matrices(ir) || progress;
1612
1613 if (linked && options->OptimizeForAOS) {
1614 progress = do_vectorize(ir) || progress;
1615 }
1616
1617 if (linked)
1618 progress = do_dead_code(ir, uniform_locations_assigned) || progress;
1619 else
1620 progress = do_dead_code_unlinked(ir) || progress;
1621 progress = do_dead_code_local(ir) || progress;
1622 progress = do_tree_grafting(ir) || progress;
1623 progress = do_constant_propagation(ir) || progress;
1624 if (linked)
1625 progress = do_constant_variable(ir) || progress;
1626 else
1627 progress = do_constant_variable_unlinked(ir) || progress;
1628 progress = do_constant_folding(ir) || progress;
1629 progress = do_minmax_prune(ir) || progress;
1630 progress = do_cse(ir) || progress;
1631 progress = do_rebalance_tree(ir) || progress;
1632 progress = do_algebraic(ir, native_integers, options) || progress;
1633 progress = do_lower_jumps(ir) || progress;
1634 progress = do_vec_index_to_swizzle(ir) || progress;
1635 progress = lower_vector_insert(ir, false) || progress;
1636 progress = do_swizzle_swizzle(ir) || progress;
1637 progress = do_noop_swizzle(ir) || progress;
1638
1639 progress = optimize_split_arrays(ir, linked) || progress;
1640 progress = optimize_redundant_jumps(ir) || progress;
1641
1642 loop_state *ls = analyze_loop_variables(ir);
1643 if (ls->loop_found) {
1644 progress = set_loop_controls(ir, ls) || progress;
1645 progress = unroll_loops(ir, ls, options) || progress;
1646 }
1647 delete ls;
1648
1649 return progress;
1650 }
1651
1652 extern "C" {
1653
1654 /**
1655 * To be called at GL teardown time, this frees compiler datastructures.
1656 *
1657 * After calling this, any previously compiled shaders and shader
1658 * programs would be invalid. So this should happen at approximately
1659 * program exit.
1660 */
1661 void
1662 _mesa_destroy_shader_compiler(void)
1663 {
1664 _mesa_destroy_shader_compiler_caches();
1665
1666 _mesa_glsl_release_types();
1667 }
1668
1669 /**
1670 * Releases compiler caches to trade off performance for memory.
1671 *
1672 * Intended to be used with glReleaseShaderCompiler().
1673 */
1674 void
1675 _mesa_destroy_shader_compiler_caches(void)
1676 {
1677 _mesa_glsl_release_builtin_functions();
1678 }
1679
1680 }