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