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