blob: e9cf5503a27355ed21d82032b75e195f5c98a886 [file] [log] [blame]
Ian Romanick832dfa52010-06-17 15:04:20 -07001/*
2 * Copyright © 2010 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
24/**
25 * \file linker.cpp
26 * GLSL linker implementation
27 *
28 * Given a set of shaders that are to be linked to generate a final program,
29 * there are three distinct stages.
30 *
31 * In the first stage shaders are partitioned into groups based on the shader
32 * type. All shaders of a particular type (e.g., vertex shaders) are linked
33 * together.
34 *
35 * - Undefined references in each shader are resolve to definitions in
36 * another shader.
37 * - Types and qualifiers of uniforms, outputs, and global variables defined
38 * in multiple shaders with the same name are verified to be the same.
39 * - Initializers for uniforms and global variables defined
40 * in multiple shaders with the same name are verified to be the same.
41 *
42 * The result, in the terminology of the GLSL spec, is a set of shader
43 * executables for each processing unit.
44 *
45 * After the first stage is complete, a series of semantic checks are performed
46 * on each of the shader executables.
47 *
48 * - Each shader executable must define a \c main function.
49 * - Each vertex shader executable must write to \c gl_Position.
50 * - Each fragment shader executable must write to either \c gl_FragData or
51 * \c gl_FragColor.
52 *
53 * In the final stage individual shader executables are linked to create a
54 * complete exectuable.
55 *
56 * - Types of uniforms defined in multiple shader stages with the same name
57 * are verified to be the same.
58 * - Initializers for uniforms defined in multiple shader stages with the
59 * same name are verified to be the same.
60 * - Types and qualifiers of outputs defined in one stage are verified to
61 * be the same as the types and qualifiers of inputs defined with the same
62 * name in a later stage.
63 *
64 * \author Ian Romanick <ian.d.romanick@intel.com>
65 */
Ian Romanickf36460e2010-06-23 12:07:22 -070066
Chia-I Wubfd7c9a2010-08-23 17:51:42 +080067#include "main/core.h"
Ian Romanick832dfa52010-06-17 15:04:20 -070068#include "glsl_symbol_table.h"
Eric Anholtfaf3dba2013-06-12 16:57:11 -070069#include "glsl_parser_extras.h"
Ian Romanick832dfa52010-06-17 15:04:20 -070070#include "ir.h"
71#include "program.h"
Aras Pranckevicius31747152010-07-29 12:40:49 +030072#include "program/hash_table.h"
Ian Romanick8fe8a812010-07-13 17:36:13 -070073#include "linker.h"
Paul Berry4b11b572012-12-17 14:20:35 -080074#include "link_varyings.h"
Ian Romanicka7ba9a72010-07-20 13:36:32 -070075#include "ir_optimization.h"
Bryan Cain25480922013-02-15 09:46:50 -060076#include "ir_rvalue_visitor.h"
Tapani Pällieca9d162014-04-08 08:45:36 +030077#include "ir_uniform.h"
Ian Romanick832dfa52010-06-17 15:04:20 -070078
Ian Romanick3322fba2010-10-14 13:28:42 -070079extern "C" {
80#include "main/shaderobj.h"
Eric Anholt6065a872013-06-12 18:12:40 -070081#include "main/enums.h"
Ian Romanick3322fba2010-10-14 13:28:42 -070082}
83
Bryan Cain25480922013-02-15 09:46:50 -060084void linker_error(gl_shader_program *, const char *, ...);
85
Eric Anholt10ef9492013-09-20 11:03:44 -070086namespace {
87
Ian Romanick832dfa52010-06-17 15:04:20 -070088/**
89 * Visitor that determines whether or not a variable is ever written.
90 */
91class find_assignment_visitor : public ir_hierarchical_visitor {
92public:
93 find_assignment_visitor(const char *name)
94 : name(name), found(false)
95 {
96 /* empty */
97 }
98
99 virtual ir_visitor_status visit_enter(ir_assignment *ir)
100 {
101 ir_variable *const var = ir->lhs->variable_referenced();
102
103 if (strcmp(name, var->name) == 0) {
104 found = true;
105 return visit_stop;
106 }
107
108 return visit_continue_with_parent;
109 }
110
Eric Anholt18a60232010-08-23 11:29:25 -0700111 virtual ir_visitor_status visit_enter(ir_call *ir)
112 {
Kenneth Graunke48d0faa2014-01-10 16:39:17 -0800113 foreach_two_lists(formal_node, &ir->callee->parameters,
114 actual_node, &ir->actual_parameters) {
115 ir_rvalue *param_rval = (ir_rvalue *) actual_node;
116 ir_variable *sig_param = (ir_variable *) formal_node;
Eric Anholt18a60232010-08-23 11:29:25 -0700117
Tapani Pälli33ee2c62013-12-12 13:51:01 +0200118 if (sig_param->data.mode == ir_var_function_out ||
119 sig_param->data.mode == ir_var_function_inout) {
Eric Anholt18a60232010-08-23 11:29:25 -0700120 ir_variable *var = param_rval->variable_referenced();
121 if (var && strcmp(name, var->name) == 0) {
122 found = true;
123 return visit_stop;
124 }
125 }
Eric Anholt18a60232010-08-23 11:29:25 -0700126 }
127
Kenneth Graunked884f602012-03-20 15:56:37 -0700128 if (ir->return_deref != NULL) {
129 ir_variable *const var = ir->return_deref->variable_referenced();
130
131 if (strcmp(name, var->name) == 0) {
132 found = true;
133 return visit_stop;
134 }
135 }
136
Eric Anholt18a60232010-08-23 11:29:25 -0700137 return visit_continue_with_parent;
138 }
139
Ian Romanick832dfa52010-06-17 15:04:20 -0700140 bool variable_found()
141 {
142 return found;
143 }
144
145private:
146 const char *name; /**< Find writes to a variable with this name. */
147 bool found; /**< Was a write to the variable found? */
148};
149
Ian Romanickc93b8f12010-06-17 15:20:22 -0700150
Ian Romanickc33e78f2010-08-13 12:30:41 -0700151/**
152 * Visitor that determines whether or not a variable is ever read.
153 */
154class find_deref_visitor : public ir_hierarchical_visitor {
155public:
156 find_deref_visitor(const char *name)
157 : name(name), found(false)
158 {
159 /* empty */
160 }
161
162 virtual ir_visitor_status visit(ir_dereference_variable *ir)
163 {
164 if (strcmp(this->name, ir->var->name) == 0) {
165 this->found = true;
166 return visit_stop;
167 }
168
169 return visit_continue;
170 }
171
172 bool variable_found() const
173 {
174 return this->found;
175 }
176
177private:
178 const char *name; /**< Find writes to a variable with this name. */
179 bool found; /**< Was a write to the variable found? */
180};
181
182
Paul Berry7cfefe62013-07-30 21:13:48 -0700183class geom_array_resize_visitor : public ir_hierarchical_visitor {
184public:
185 unsigned num_vertices;
186 gl_shader_program *prog;
187
188 geom_array_resize_visitor(unsigned num_vertices, gl_shader_program *prog)
189 {
190 this->num_vertices = num_vertices;
191 this->prog = prog;
192 }
193
194 virtual ~geom_array_resize_visitor()
195 {
196 /* empty */
197 }
198
199 virtual ir_visitor_status visit(ir_variable *var)
200 {
Tapani Pälli33ee2c62013-12-12 13:51:01 +0200201 if (!var->type->is_array() || var->data.mode != ir_var_shader_in)
Paul Berry7cfefe62013-07-30 21:13:48 -0700202 return visit_continue;
203
204 unsigned size = var->type->length;
205
206 /* Generate a link error if the shader has declared this array with an
207 * incorrect size.
208 */
209 if (size && size != this->num_vertices) {
210 linker_error(this->prog, "size of array %s declared as %u, "
211 "but number of input vertices is %u\n",
212 var->name, size, this->num_vertices);
213 return visit_continue;
214 }
215
216 /* Generate a link error if the shader attempts to access an input
217 * array using an index too large for its actual size assigned at link
218 * time.
219 */
Tapani Pälli447bb902013-12-12 15:08:59 +0200220 if (var->data.max_array_access >= this->num_vertices) {
Paul Berry7cfefe62013-07-30 21:13:48 -0700221 linker_error(this->prog, "geometry shader accesses element %i of "
222 "%s, but only %i input vertices\n",
Tapani Pälli447bb902013-12-12 15:08:59 +0200223 var->data.max_array_access, var->name, this->num_vertices);
Paul Berry7cfefe62013-07-30 21:13:48 -0700224 return visit_continue;
225 }
226
227 var->type = glsl_type::get_array_instance(var->type->element_type(),
228 this->num_vertices);
Tapani Pälli447bb902013-12-12 15:08:59 +0200229 var->data.max_array_access = this->num_vertices - 1;
Paul Berry7cfefe62013-07-30 21:13:48 -0700230
231 return visit_continue;
232 }
233
234 /* Dereferences of input variables need to be updated so that their type
235 * matches the newly assigned type of the variable they are accessing. */
236 virtual ir_visitor_status visit(ir_dereference_variable *ir)
237 {
238 ir->type = ir->var->type;
239 return visit_continue;
240 }
241
242 /* Dereferences of 2D input arrays need to be updated so that their type
243 * matches the newly assigned type of the array they are accessing. */
244 virtual ir_visitor_status visit_leave(ir_dereference_array *ir)
245 {
246 const glsl_type *const vt = ir->array->type;
247 if (vt->is_array())
248 ir->type = vt->element_type();
249 return visit_continue;
250 }
251};
252
Paul Berry1a33e022013-08-18 20:59:37 -0700253/**
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200254 * Visitor that determines the highest stream id to which a (geometry) shader
255 * emits vertices. It also checks whether End{Stream}Primitive is ever called.
Paul Berry1a33e022013-08-18 20:59:37 -0700256 */
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200257class find_emit_vertex_visitor : public ir_hierarchical_visitor {
Paul Berry1a33e022013-08-18 20:59:37 -0700258public:
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200259 find_emit_vertex_visitor(int max_allowed)
260 : max_stream_allowed(max_allowed),
261 invalid_stream_id(0),
262 invalid_stream_id_from_emit_vertex(false),
263 end_primitive_found(false),
264 uses_non_zero_stream(false)
Paul Berry1a33e022013-08-18 20:59:37 -0700265 {
266 /* empty */
267 }
268
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200269 virtual ir_visitor_status visit_leave(ir_emit_vertex *ir)
Paul Berry1a33e022013-08-18 20:59:37 -0700270 {
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200271 int stream_id = ir->stream_id();
272
273 if (stream_id < 0) {
274 invalid_stream_id = stream_id;
275 invalid_stream_id_from_emit_vertex = true;
276 return visit_stop;
277 }
278
279 if (stream_id > max_stream_allowed) {
280 invalid_stream_id = stream_id;
281 invalid_stream_id_from_emit_vertex = true;
282 return visit_stop;
283 }
284
285 if (stream_id != 0)
286 uses_non_zero_stream = true;
287
288 return visit_continue;
Paul Berry1a33e022013-08-18 20:59:37 -0700289 }
290
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200291 virtual ir_visitor_status visit_leave(ir_end_primitive *ir)
Paul Berry1a33e022013-08-18 20:59:37 -0700292 {
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200293 end_primitive_found = true;
294
295 int stream_id = ir->stream_id();
296
297 if (stream_id < 0) {
298 invalid_stream_id = stream_id;
299 invalid_stream_id_from_emit_vertex = false;
300 return visit_stop;
301 }
302
303 if (stream_id > max_stream_allowed) {
304 invalid_stream_id = stream_id;
305 invalid_stream_id_from_emit_vertex = false;
306 return visit_stop;
307 }
308
309 if (stream_id != 0)
310 uses_non_zero_stream = true;
311
312 return visit_continue;
313 }
314
315 bool error()
316 {
317 return invalid_stream_id != 0;
318 }
319
320 const char *error_func()
321 {
322 return invalid_stream_id_from_emit_vertex ?
323 "EmitStreamVertex" : "EndStreamPrimitive";
324 }
325
326 int error_stream()
327 {
328 return invalid_stream_id;
329 }
330
331 bool uses_streams()
332 {
333 return uses_non_zero_stream;
334 }
335
336 bool uses_end_primitive()
337 {
338 return end_primitive_found;
Paul Berry1a33e022013-08-18 20:59:37 -0700339 }
340
341private:
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200342 int max_stream_allowed;
343 int invalid_stream_id;
344 bool invalid_stream_id_from_emit_vertex;
345 bool end_primitive_found;
346 bool uses_non_zero_stream;
Paul Berry1a33e022013-08-18 20:59:37 -0700347};
348
Eric Anholt10ef9492013-09-20 11:03:44 -0700349} /* anonymous namespace */
Paul Berry1a33e022013-08-18 20:59:37 -0700350
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700351void
Ian Romanick586e7412011-07-28 14:04:09 -0700352linker_error(gl_shader_program *prog, const char *fmt, ...)
Ian Romanickf36460e2010-06-23 12:07:22 -0700353{
354 va_list ap;
355
Kenneth Graunked3073f52011-01-21 14:32:31 -0800356 ralloc_strcat(&prog->InfoLog, "error: ");
Ian Romanickf36460e2010-06-23 12:07:22 -0700357 va_start(ap, fmt);
Kenneth Graunked3073f52011-01-21 14:32:31 -0800358 ralloc_vasprintf_append(&prog->InfoLog, fmt, ap);
Ian Romanickf36460e2010-06-23 12:07:22 -0700359 va_end(ap);
Ian Romanick586e7412011-07-28 14:04:09 -0700360
361 prog->LinkStatus = false;
Ian Romanickf36460e2010-06-23 12:07:22 -0700362}
363
364
365void
Ian Romanick379a32f2011-07-28 14:09:06 -0700366linker_warning(gl_shader_program *prog, const char *fmt, ...)
367{
368 va_list ap;
369
Anuj Phogat80b4a362014-03-07 16:48:35 -0800370 ralloc_strcat(&prog->InfoLog, "warning: ");
Ian Romanick379a32f2011-07-28 14:09:06 -0700371 va_start(ap, fmt);
372 ralloc_vasprintf_append(&prog->InfoLog, fmt, ap);
373 va_end(ap);
374
375}
376
377
Paul Berryb92900d2013-01-28 14:21:59 -0800378/**
379 * Given a string identifying a program resource, break it into a base name
380 * and an optional array index in square brackets.
381 *
382 * If an array index is present, \c out_base_name_end is set to point to the
383 * "[" that precedes the array index, and the array index itself is returned
384 * as a long.
385 *
386 * If no array index is present (or if the array index is negative or
387 * mal-formed), \c out_base_name_end, is set to point to the null terminator
388 * at the end of the input string, and -1 is returned.
389 *
390 * Only the final array index is parsed; if the string contains other array
391 * indices (or structure field accesses), they are left in the base name.
392 *
393 * No attempt is made to check that the base name is properly formed;
394 * typically the caller will look up the base name in a hash table, so
395 * ill-formed base names simply turn into hash table lookup failures.
396 */
397long
398parse_program_resource_name(const GLchar *name,
399 const GLchar **out_base_name_end)
400{
401 /* Section 7.3.1 ("Program Interfaces") of the OpenGL 4.3 spec says:
402 *
403 * "When an integer array element or block instance number is part of
404 * the name string, it will be specified in decimal form without a "+"
405 * or "-" sign or any extra leading zeroes. Additionally, the name
406 * string will not include white space anywhere in the string."
407 */
408
409 const size_t len = strlen(name);
410 *out_base_name_end = name + len;
411
412 if (len == 0 || name[len-1] != ']')
413 return -1;
414
415 /* Walk backwards over the string looking for a non-digit character. This
416 * had better be the opening bracket for an array index.
417 *
418 * Initially, i specifies the location of the ']'. Since the string may
419 * contain only the ']' charcater, walk backwards very carefully.
420 */
421 unsigned i;
422 for (i = len - 1; (i > 0) && isdigit(name[i-1]); --i)
423 /* empty */ ;
424
425 if ((i == 0) || name[i-1] != '[')
426 return -1;
427
428 long array_index = strtol(&name[i], NULL, 10);
429 if (array_index < 0)
430 return -1;
431
432 *out_base_name_end = name + (i - 1);
433 return array_index;
434}
435
436
Ian Romanick379a32f2011-07-28 14:09:06 -0700437void
Ian Romanick63974c02013-10-04 10:46:29 -0700438link_invalidate_variable_locations(exec_list *ir)
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700439{
Matt Turner4d784462014-06-24 21:34:05 -0700440 foreach_in_list(ir_instruction, node, ir) {
441 ir_variable *const var = node->as_variable();
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700442
Paul Berry50895d42012-12-05 07:17:07 -0800443 if (var == NULL)
444 continue;
445
Ian Romanick63974c02013-10-04 10:46:29 -0700446 /* Only assign locations for variables that lack an explicit location.
447 * Explicit locations are set for all built-in variables, generic vertex
448 * shader inputs (via layout(location=...)), and generic fragment shader
449 * outputs (also via layout(location=...)).
450 */
Tapani Pälli447bb902013-12-12 15:08:59 +0200451 if (!var->data.explicit_location) {
452 var->data.location = -1;
453 var->data.location_frac = 0;
Paul Berry50895d42012-12-05 07:17:07 -0800454 }
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700455
Ian Romanick63974c02013-10-04 10:46:29 -0700456 /* ir_variable::is_unmatched_generic_inout is used by the linker while
457 * connecting outputs from one stage to inputs of the next stage.
458 *
459 * There are two implicit assumptions here. First, we assume that any
460 * built-in variable (i.e., non-generic in or out) will have
461 * explicit_location set. Second, we assume that any generic in or out
462 * will not have explicit_location set.
463 *
464 * This second assumption will only be valid until
465 * GL_ARB_separate_shader_objects is supported. When that extension is
466 * implemented, this function will need some modifications.
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700467 */
Tapani Pälli447bb902013-12-12 15:08:59 +0200468 if (!var->data.explicit_location) {
469 var->data.is_unmatched_generic_inout = 1;
Paul Berry3e81c662012-12-05 10:47:55 -0800470 } else {
Tapani Pälli447bb902013-12-12 15:08:59 +0200471 var->data.is_unmatched_generic_inout = 0;
Paul Berry3e81c662012-12-05 10:47:55 -0800472 }
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700473 }
474}
475
476
Ian Romanickc93b8f12010-06-17 15:20:22 -0700477/**
Paul Berry44e07de2013-06-11 14:11:05 -0700478 * Set UsesClipDistance and ClipDistanceArraySize based on the given shader.
479 *
480 * Also check for errors based on incorrect usage of gl_ClipVertex and
481 * gl_ClipDistance.
482 *
483 * Return false if an error was reported.
484 */
485static void
Paul Berryb30e25f2013-12-17 09:49:43 -0800486analyze_clip_usage(struct gl_shader_program *prog,
Paul Berry44e07de2013-06-11 14:11:05 -0700487 struct gl_shader *shader, GLboolean *UsesClipDistance,
488 GLuint *ClipDistanceArraySize)
489{
490 *ClipDistanceArraySize = 0;
491
492 if (!prog->IsES && prog->Version >= 130) {
493 /* From section 7.1 (Vertex Shader Special Variables) of the
494 * GLSL 1.30 spec:
495 *
496 * "It is an error for a shader to statically write both
497 * gl_ClipVertex and gl_ClipDistance."
498 *
499 * This does not apply to GLSL ES shaders, since GLSL ES defines neither
500 * gl_ClipVertex nor gl_ClipDistance.
501 */
502 find_assignment_visitor clip_vertex("gl_ClipVertex");
503 find_assignment_visitor clip_distance("gl_ClipDistance");
504
505 clip_vertex.run(shader->ir);
506 clip_distance.run(shader->ir);
507 if (clip_vertex.variable_found() && clip_distance.variable_found()) {
508 linker_error(prog, "%s shader writes to both `gl_ClipVertex' "
Paul Berryb30e25f2013-12-17 09:49:43 -0800509 "and `gl_ClipDistance'\n",
Paul Berrye3b86f02014-01-07 10:58:56 -0800510 _mesa_shader_stage_to_string(shader->Stage));
Paul Berry44e07de2013-06-11 14:11:05 -0700511 return;
512 }
513 *UsesClipDistance = clip_distance.variable_found();
514 ir_variable *clip_distance_var =
515 shader->symbols->get_variable("gl_ClipDistance");
516 if (clip_distance_var)
517 *ClipDistanceArraySize = clip_distance_var->type->length;
518 } else {
519 *UsesClipDistance = false;
520 }
521}
522
523
524/**
Paul Berry1ad54ae2011-09-17 09:42:02 -0700525 * Verify that a vertex shader executable meets all semantic requirements.
526 *
Paul Berry642e5b412012-01-04 13:57:52 -0800527 * Also sets prog->Vert.UsesClipDistance and prog->Vert.ClipDistanceArraySize
528 * as a side effect.
Ian Romanickc93b8f12010-06-17 15:20:22 -0700529 *
530 * \param shader Vertex shader executable to be verified
531 */
Paul Berryb95d2372013-07-27 11:08:31 -0700532void
Eric Anholt849e1812010-06-30 11:49:17 -0700533validate_vertex_shader_executable(struct gl_shader_program *prog,
Eric Anholt16b68b12010-06-30 11:05:43 -0700534 struct gl_shader *shader)
Ian Romanick832dfa52010-06-17 15:04:20 -0700535{
536 if (shader == NULL)
Paul Berryb95d2372013-07-27 11:08:31 -0700537 return;
Ian Romanick832dfa52010-06-17 15:04:20 -0700538
Eric Anholtf1c1c9e2012-03-19 22:43:27 -0700539 /* From the GLSL 1.10 spec, page 48:
540 *
541 * "The variable gl_Position is available only in the vertex
542 * language and is intended for writing the homogeneous vertex
543 * position. All executions of a well-formed vertex shader
544 * executable must write a value into this variable. [...] The
545 * variable gl_Position is available only in the vertex
546 * language and is intended for writing the homogeneous vertex
547 * position. All executions of a well-formed vertex shader
548 * executable must write a value into this variable."
549 *
550 * while in GLSL 1.40 this text is changed to:
551 *
552 * "The variable gl_Position is available only in the vertex
553 * language and is intended for writing the homogeneous vertex
554 * position. It can be written at any time during shader
555 * execution. It may also be read back by a vertex shader
556 * after being written. This value will be used by primitive
557 * assembly, clipping, culling, and other fixed functionality
558 * operations, if present, that operate on primitives after
559 * vertex processing has occurred. Its value is undefined if
560 * the vertex shader executable does not write gl_Position."
Paul Berry15ba2a52012-08-02 17:51:02 -0700561 *
Kalyan Kondapally78c92012014-09-08 11:10:42 +0300562 * All GLSL ES Versions are similar to GLSL 1.40--failing to write to
563 * gl_Position is not an error.
Eric Anholtf1c1c9e2012-03-19 22:43:27 -0700564 */
Kalyan Kondapally78c92012014-09-08 11:10:42 +0300565 if (!prog->IsES && prog->Version < 140) {
Eric Anholtf1c1c9e2012-03-19 22:43:27 -0700566 find_assignment_visitor find("gl_Position");
567 find.run(shader->ir);
568 if (!find.variable_found()) {
569 linker_error(prog, "vertex shader does not write to `gl_Position'\n");
Paul Berryb95d2372013-07-27 11:08:31 -0700570 return;
Eric Anholtf1c1c9e2012-03-19 22:43:27 -0700571 }
Ian Romanick832dfa52010-06-17 15:04:20 -0700572 }
573
Paul Berryb30e25f2013-12-17 09:49:43 -0800574 analyze_clip_usage(prog, shader, &prog->Vert.UsesClipDistance,
Paul Berry44e07de2013-06-11 14:11:05 -0700575 &prog->Vert.ClipDistanceArraySize);
Ian Romanick832dfa52010-06-17 15:04:20 -0700576}
577
578
Ian Romanickc93b8f12010-06-17 15:20:22 -0700579/**
580 * Verify that a fragment shader executable meets all semantic requirements
581 *
582 * \param shader Fragment shader executable to be verified
583 */
Paul Berryb95d2372013-07-27 11:08:31 -0700584void
Eric Anholt849e1812010-06-30 11:49:17 -0700585validate_fragment_shader_executable(struct gl_shader_program *prog,
Eric Anholt16b68b12010-06-30 11:05:43 -0700586 struct gl_shader *shader)
Ian Romanick832dfa52010-06-17 15:04:20 -0700587{
588 if (shader == NULL)
Paul Berryb95d2372013-07-27 11:08:31 -0700589 return;
Ian Romanick832dfa52010-06-17 15:04:20 -0700590
Ian Romanick832dfa52010-06-17 15:04:20 -0700591 find_assignment_visitor frag_color("gl_FragColor");
592 find_assignment_visitor frag_data("gl_FragData");
593
Eric Anholt16b68b12010-06-30 11:05:43 -0700594 frag_color.run(shader->ir);
595 frag_data.run(shader->ir);
Ian Romanick832dfa52010-06-17 15:04:20 -0700596
Ian Romanick832dfa52010-06-17 15:04:20 -0700597 if (frag_color.variable_found() && frag_data.variable_found()) {
Ian Romanick586e7412011-07-28 14:04:09 -0700598 linker_error(prog, "fragment shader writes to both "
599 "`gl_FragColor' and `gl_FragData'\n");
Ian Romanick832dfa52010-06-17 15:04:20 -0700600 }
Ian Romanick832dfa52010-06-17 15:04:20 -0700601}
602
Bryan Cain25480922013-02-15 09:46:50 -0600603/**
604 * Verify that a geometry shader executable meets all semantic requirements
605 *
Paul Berry44e07de2013-06-11 14:11:05 -0700606 * Also sets prog->Geom.VerticesIn, prog->Geom.UsesClipDistance, and
607 * prog->Geom.ClipDistanceArraySize as a side effect.
Bryan Cain25480922013-02-15 09:46:50 -0600608 *
609 * \param shader Geometry shader executable to be verified
610 */
611void
612validate_geometry_shader_executable(struct gl_shader_program *prog,
613 struct gl_shader *shader)
614{
615 if (shader == NULL)
616 return;
617
618 unsigned num_vertices = vertices_per_prim(prog->Geom.InputType);
619 prog->Geom.VerticesIn = num_vertices;
Paul Berry44e07de2013-06-11 14:11:05 -0700620
Paul Berryb30e25f2013-12-17 09:49:43 -0800621 analyze_clip_usage(prog, shader, &prog->Geom.UsesClipDistance,
Paul Berry44e07de2013-06-11 14:11:05 -0700622 &prog->Geom.ClipDistanceArraySize);
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200623}
Paul Berry1a33e022013-08-18 20:59:37 -0700624
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200625/**
626 * Check if geometry shaders emit to non-zero streams and do corresponding
627 * validations.
628 */
629static void
630validate_geometry_shader_emissions(struct gl_context *ctx,
631 struct gl_shader_program *prog)
632{
633 if (prog->_LinkedShaders[MESA_SHADER_GEOMETRY] != NULL) {
634 find_emit_vertex_visitor emit_vertex(ctx->Const.MaxVertexStreams - 1);
635 emit_vertex.run(prog->_LinkedShaders[MESA_SHADER_GEOMETRY]->ir);
636 if (emit_vertex.error()) {
637 linker_error(prog, "Invalid call %s(%d). Accepted values for the "
638 "stream parameter are in the range [0, %d].",
639 emit_vertex.error_func(),
640 emit_vertex.error_stream(),
641 ctx->Const.MaxVertexStreams - 1);
642 }
643 prog->Geom.UsesStreams = emit_vertex.uses_streams();
644 prog->Geom.UsesEndPrimitive = emit_vertex.uses_end_primitive();
645
646 /* From the ARB_gpu_shader5 spec:
647 *
648 * "Multiple vertex streams are supported only if the output primitive
649 * type is declared to be "points". A program will fail to link if it
650 * contains a geometry shader calling EmitStreamVertex() or
651 * EndStreamPrimitive() if its output primitive type is not "points".
652 *
653 * However, in the same spec:
654 *
655 * "The function EmitVertex() is equivalent to calling EmitStreamVertex()
656 * with <stream> set to zero."
657 *
658 * And:
659 *
660 * "The function EndPrimitive() is equivalent to calling
661 * EndStreamPrimitive() with <stream> set to zero."
662 *
663 * Since we can call EmitVertex() and EndPrimitive() when we output
664 * primitives other than points, calling EmitStreamVertex(0) or
665 * EmitEndPrimitive(0) should not produce errors. This it also what Nvidia
666 * does. Currently we only set prog->Geom.UsesStreams to TRUE when
667 * EmitStreamVertex() or EmitEndPrimitive() are called with a non-zero
668 * stream.
669 */
670 if (prog->Geom.UsesStreams && prog->Geom.OutputType != GL_POINTS) {
671 linker_error(prog, "EmitStreamVertex(n) and EndStreamPrimitive(n) "
672 "with n>0 requires point output");
673 }
674 }
Bryan Cain25480922013-02-15 09:46:50 -0600675}
676
Ian Romanick832dfa52010-06-17 15:04:20 -0700677
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700678/**
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700679 * Perform validation of global variables used across multiple shaders
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700680 */
Paul Berryb95d2372013-07-27 11:08:31 -0700681void
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700682cross_validate_globals(struct gl_shader_program *prog,
683 struct gl_shader **shader_list,
684 unsigned num_shaders,
685 bool uniforms_only)
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700686{
687 /* Examine all of the uniforms in all of the shaders and cross validate
688 * them.
689 */
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700690 glsl_symbol_table variables;
691 for (unsigned i = 0; i < num_shaders; i++) {
Ian Romanick3322fba2010-10-14 13:28:42 -0700692 if (shader_list[i] == NULL)
693 continue;
694
Matt Turner4d784462014-06-24 21:34:05 -0700695 foreach_in_list(ir_instruction, node, shader_list[i]->ir) {
696 ir_variable *const var = node->as_variable();
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700697
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700698 if (var == NULL)
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700699 continue;
700
Tapani Pälli33ee2c62013-12-12 13:51:01 +0200701 if (uniforms_only && (var->data.mode != ir_var_uniform))
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700702 continue;
703
Ian Romanick7e2aa912010-07-19 17:12:42 -0700704 /* Don't cross validate temporaries that are at global scope. These
705 * will eventually get pulled into the shaders 'main'.
706 */
Tapani Pälli33ee2c62013-12-12 13:51:01 +0200707 if (var->data.mode == ir_var_temporary)
Ian Romanick7e2aa912010-07-19 17:12:42 -0700708 continue;
709
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700710 /* If a global with this name has already been seen, verify that the
711 * new instance has the same type. In addition, if the globals have
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700712 * initializers, the values of the initializers must be the same.
713 */
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700714 ir_variable *const existing = variables.get_variable(var->name);
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700715 if (existing != NULL) {
716 if (var->type != existing->type) {
Ian Romanicka2711d62010-08-29 22:07:49 -0700717 /* Consider the types to be "the same" if both types are arrays
718 * of the same type and one of the arrays is implicitly sized.
719 * In addition, set the type of the linked variable to the
720 * explicitly sized array.
721 */
722 if (var->type->is_array()
723 && existing->type->is_array()
724 && (var->type->fields.array == existing->type->fields.array)
725 && ((var->type->length == 0)
726 || (existing->type->length == 0))) {
Ian Romanick0f4b2a02011-01-25 12:06:18 -0800727 if (var->type->length != 0) {
Ian Romanicka2711d62010-08-29 22:07:49 -0700728 existing->type = var->type;
Ian Romanick6f539212010-12-07 18:30:33 -0800729 }
Grigori Goronzy955c93d2013-11-27 00:15:06 +0100730 } else if (var->type->is_record()
731 && existing->type->is_record()
732 && existing->type->record_compare(var->type)) {
733 existing->type = var->type;
Ian Romanicka2711d62010-08-29 22:07:49 -0700734 } else {
Ian Romanick586e7412011-07-28 14:04:09 -0700735 linker_error(prog, "%s `%s' declared as type "
736 "`%s' and type `%s'\n",
737 mode_string(var),
738 var->name, var->type->name,
739 existing->type->name);
Paul Berryb95d2372013-07-27 11:08:31 -0700740 return;
Ian Romanicka2711d62010-08-29 22:07:49 -0700741 }
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700742 }
743
Tapani Pälli447bb902013-12-12 15:08:59 +0200744 if (var->data.explicit_location) {
745 if (existing->data.explicit_location
746 && (var->data.location != existing->data.location)) {
Ian Romanick586e7412011-07-28 14:04:09 -0700747 linker_error(prog, "explicit locations for %s "
748 "`%s' have differing values\n",
749 mode_string(var), var->name);
Paul Berryb95d2372013-07-27 11:08:31 -0700750 return;
Ian Romanick68a4fc92010-10-07 17:21:22 -0700751 }
752
Tapani Pälli447bb902013-12-12 15:08:59 +0200753 existing->data.location = var->data.location;
754 existing->data.explicit_location = true;
Ian Romanick68a4fc92010-10-07 17:21:22 -0700755 }
756
Kenneth Graunke9a9a8302013-07-16 12:18:57 -0700757 /* From the GLSL 4.20 specification:
758 * "A link error will result if two compilation units in a program
759 * specify different integer-constant bindings for the same
760 * opaque-uniform name. However, it is not an error to specify a
761 * binding on some but not all declarations for the same name"
762 */
Tapani Pälli447bb902013-12-12 15:08:59 +0200763 if (var->data.explicit_binding) {
764 if (existing->data.explicit_binding &&
765 var->data.binding != existing->data.binding) {
Kenneth Graunke9a9a8302013-07-16 12:18:57 -0700766 linker_error(prog, "explicit bindings for %s "
767 "`%s' have differing values\n",
768 mode_string(var), var->name);
Paul Berryb95d2372013-07-27 11:08:31 -0700769 return;
Kenneth Graunke9a9a8302013-07-16 12:18:57 -0700770 }
771
Tapani Pälli447bb902013-12-12 15:08:59 +0200772 existing->data.binding = var->data.binding;
773 existing->data.explicit_binding = true;
Kenneth Graunke9a9a8302013-07-16 12:18:57 -0700774 }
775
Francisco Jerez5c114932013-09-11 12:14:46 -0700776 if (var->type->contains_atomic() &&
Tapani Pälli447bb902013-12-12 15:08:59 +0200777 var->data.atomic.offset != existing->data.atomic.offset) {
Francisco Jerez5c114932013-09-11 12:14:46 -0700778 linker_error(prog, "offset specifications for %s "
779 "`%s' have differing values\n",
780 mode_string(var), var->name);
781 return;
782 }
783
Ian Romanick46173f92011-10-31 13:07:06 -0700784 /* Validate layout qualifiers for gl_FragDepth.
785 *
786 * From the AMD/ARB_conservative_depth specs:
787 *
788 * "If gl_FragDepth is redeclared in any fragment shader in a
789 * program, it must be redeclared in all fragment shaders in
790 * that program that have static assignments to
791 * gl_FragDepth. All redeclarations of gl_FragDepth in all
792 * fragment shaders in a single program must have the same set
793 * of qualifiers."
794 */
795 if (strcmp(var->name, "gl_FragDepth") == 0) {
Tapani Pälli447bb902013-12-12 15:08:59 +0200796 bool layout_declared = var->data.depth_layout != ir_depth_layout_none;
Ian Romanick46173f92011-10-31 13:07:06 -0700797 bool layout_differs =
Tapani Pälli447bb902013-12-12 15:08:59 +0200798 var->data.depth_layout != existing->data.depth_layout;
Ian Romanick46173f92011-10-31 13:07:06 -0700799
800 if (layout_declared && layout_differs) {
801 linker_error(prog,
802 "All redeclarations of gl_FragDepth in all "
803 "fragment shaders in a single program must have "
804 "the same set of qualifiers.");
805 }
806
Tapani Pälli33ee2c62013-12-12 13:51:01 +0200807 if (var->data.used && layout_differs) {
Ian Romanick46173f92011-10-31 13:07:06 -0700808 linker_error(prog,
809 "If gl_FragDepth is redeclared with a layout "
810 "qualifier in any fragment shader, it must be "
811 "redeclared with the same layout qualifier in "
812 "all fragment shaders that have assignments to "
813 "gl_FragDepth");
814 }
815 }
Chad Versaceaddae332011-01-27 01:40:31 -0800816
Ian Romanickf37b1ad2011-10-31 14:31:07 -0700817 /* Page 35 (page 41 of the PDF) of the GLSL 4.20 spec says:
818 *
819 * "If a shared global has multiple initializers, the
820 * initializers must all be constant expressions, and they
821 * must all have the same value. Otherwise, a link error will
822 * result. (A shared global having only one initializer does
823 * not require that initializer to be a constant expression.)"
824 *
825 * Previous to 4.20 the GLSL spec simply said that initializers
826 * must have the same value. In this case of non-constant
827 * initializers, this was impossible to determine. As a result,
828 * no vendor actually implemented that behavior. The 4.20
829 * behavior matches the implemented behavior of at least one other
830 * vendor, so we'll implement that for all GLSL versions.
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700831 */
Ian Romanickf37b1ad2011-10-31 14:31:07 -0700832 if (var->constant_initializer != NULL) {
833 if (existing->constant_initializer != NULL) {
834 if (!var->constant_initializer->has_value(existing->constant_initializer)) {
Ian Romanick586e7412011-07-28 14:04:09 -0700835 linker_error(prog, "initializers for %s "
836 "`%s' have differing values\n",
837 mode_string(var), var->name);
Paul Berryb95d2372013-07-27 11:08:31 -0700838 return;
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700839 }
Ian Romanickf37b1ad2011-10-31 14:31:07 -0700840 } else {
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700841 /* If the first-seen instance of a particular uniform did not
842 * have an initializer but a later instance does, copy the
843 * initializer to the version stored in the symbol table.
844 */
Ian Romanickde415b72010-07-14 13:22:12 -0700845 /* FINISHME: This is wrong. The constant_value field should
846 * FINISHME: not be modified! Imagine a case where a shader
847 * FINISHME: without an initializer is linked in two different
848 * FINISHME: programs with shaders that have differing
849 * FINISHME: initializers. Linking with the first will
850 * FINISHME: modify the shader, and linking with the second
851 * FINISHME: will fail.
852 */
Ian Romanickf37b1ad2011-10-31 14:31:07 -0700853 existing->constant_initializer =
854 var->constant_initializer->clone(ralloc_parent(existing),
855 NULL);
856 }
857 }
858
Tapani Pälli447bb902013-12-12 15:08:59 +0200859 if (var->data.has_initializer) {
860 if (existing->data.has_initializer
Ian Romanickf37b1ad2011-10-31 14:31:07 -0700861 && (var->constant_initializer == NULL
862 || existing->constant_initializer == NULL)) {
863 linker_error(prog,
864 "shared global variable `%s' has multiple "
865 "non-constant initializers.\n",
866 var->name);
Paul Berryb95d2372013-07-27 11:08:31 -0700867 return;
Ian Romanickf37b1ad2011-10-31 14:31:07 -0700868 }
869
870 /* Some instance had an initializer, so keep track of that. In
871 * this location, all sorts of initializers (constant or
872 * otherwise) will propagate the existence to the variable
873 * stored in the symbol table.
874 */
Tapani Pälli447bb902013-12-12 15:08:59 +0200875 existing->data.has_initializer = true;
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700876 }
Chad Versace7528f142010-11-17 14:34:38 -0800877
Tapani Pällic1d30802013-12-12 12:57:57 +0200878 if (existing->data.invariant != var->data.invariant) {
Ian Romanick586e7412011-07-28 14:04:09 -0700879 linker_error(prog, "declarations for %s `%s' have "
880 "mismatching invariant qualifiers\n",
881 mode_string(var), var->name);
Paul Berryb95d2372013-07-27 11:08:31 -0700882 return;
Chad Versace7528f142010-11-17 14:34:38 -0800883 }
Tapani Pällic1d30802013-12-12 12:57:57 +0200884 if (existing->data.centroid != var->data.centroid) {
Ian Romanick586e7412011-07-28 14:04:09 -0700885 linker_error(prog, "declarations for %s `%s' have "
886 "mismatching centroid qualifiers\n",
887 mode_string(var), var->name);
Paul Berryb95d2372013-07-27 11:08:31 -0700888 return;
Chad Versace61428dd2011-01-10 15:29:30 -0800889 }
Tapani Pällic1d30802013-12-12 12:57:57 +0200890 if (existing->data.sample != var->data.sample) {
Chris Forbes51c5fc82013-11-29 21:26:10 +1300891 linker_error(prog, "declarations for %s `%s` have "
892 "mismatching sample qualifiers\n",
893 mode_string(var), var->name);
894 return;
895 }
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700896 } else
Eric Anholt001eee52010-11-05 06:11:24 -0700897 variables.add_variable(var);
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700898 }
899 }
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700900}
901
902
Ian Romanick37101922010-06-18 19:02:10 -0700903/**
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700904 * Perform validation of uniforms used across multiple shader stages
905 */
Paul Berryb95d2372013-07-27 11:08:31 -0700906void
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700907cross_validate_uniforms(struct gl_shader_program *prog)
908{
Paul Berryb95d2372013-07-27 11:08:31 -0700909 cross_validate_globals(prog, prog->_LinkedShaders,
Paul Berry665b8d72014-01-07 10:11:39 -0800910 MESA_SHADER_STAGES, true);
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700911}
912
Eric Anholtf609cf72012-04-27 13:52:56 -0700913/**
914 * Accumulates the array of prog->UniformBlocks and checks that all
915 * definitons of blocks agree on their contents.
916 */
917static bool
918interstage_cross_validate_uniform_blocks(struct gl_shader_program *prog)
919{
920 unsigned max_num_uniform_blocks = 0;
Paul Berry665b8d72014-01-07 10:11:39 -0800921 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Eric Anholtf609cf72012-04-27 13:52:56 -0700922 if (prog->_LinkedShaders[i])
923 max_num_uniform_blocks += prog->_LinkedShaders[i]->NumUniformBlocks;
924 }
925
Paul Berry665b8d72014-01-07 10:11:39 -0800926 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Eric Anholtf609cf72012-04-27 13:52:56 -0700927 struct gl_shader *sh = prog->_LinkedShaders[i];
928
929 prog->UniformBlockStageIndex[i] = ralloc_array(prog, int,
930 max_num_uniform_blocks);
931 for (unsigned int j = 0; j < max_num_uniform_blocks; j++)
932 prog->UniformBlockStageIndex[i][j] = -1;
933
934 if (sh == NULL)
935 continue;
936
937 for (unsigned int j = 0; j < sh->NumUniformBlocks; j++) {
938 int index = link_cross_validate_uniform_block(prog,
939 &prog->UniformBlocks,
940 &prog->NumUniformBlocks,
941 &sh->UniformBlocks[j]);
942
943 if (index == -1) {
944 linker_error(prog, "uniform block `%s' has mismatching definitions",
945 sh->UniformBlocks[j].Name);
946 return false;
947 }
948
949 prog->UniformBlockStageIndex[i][index] = j;
950 }
951 }
952
953 return true;
954}
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700955
Ian Romanick37101922010-06-18 19:02:10 -0700956
Ian Romanick3fb87872010-07-09 14:09:34 -0700957/**
958 * Populates a shaders symbol table with all global declarations
959 */
960static void
961populate_symbol_table(gl_shader *sh)
962{
963 sh->symbols = new(sh) glsl_symbol_table;
964
Matt Turner4d784462014-06-24 21:34:05 -0700965 foreach_in_list(ir_instruction, inst, sh->ir) {
Ian Romanick3fb87872010-07-09 14:09:34 -0700966 ir_variable *var;
967 ir_function *func;
968
969 if ((func = inst->as_function()) != NULL) {
Eric Anholte8f5ebf2010-11-05 06:08:45 -0700970 sh->symbols->add_function(func);
Ian Romanick3fb87872010-07-09 14:09:34 -0700971 } else if ((var = inst->as_variable()) != NULL) {
Eric Anholt001eee52010-11-05 06:11:24 -0700972 sh->symbols->add_variable(var);
Ian Romanick3fb87872010-07-09 14:09:34 -0700973 }
974 }
975}
976
977
978/**
Ian Romanick31a97862010-07-12 18:48:50 -0700979 * Remap variables referenced in an instruction tree
980 *
981 * This is used when instruction trees are cloned from one shader and placed in
982 * another. These trees will contain references to \c ir_variable nodes that
983 * do not exist in the target shader. This function finds these \c ir_variable
984 * references and replaces the references with matching variables in the target
985 * shader.
986 *
987 * If there is no matching variable in the target shader, a clone of the
988 * \c ir_variable is made and added to the target shader. The new variable is
989 * added to \b both the instruction stream and the symbol table.
990 *
991 * \param inst IR tree that is to be processed.
992 * \param symbols Symbol table containing global scope symbols in the
993 * linked shader.
994 * \param instructions Instruction stream where new variable declarations
995 * should be added.
996 */
997void
Eric Anholt8273bd42010-08-04 12:34:56 -0700998remap_variables(ir_instruction *inst, struct gl_shader *target,
999 hash_table *temps)
Ian Romanick31a97862010-07-12 18:48:50 -07001000{
1001 class remap_visitor : public ir_hierarchical_visitor {
1002 public:
Eric Anholt8273bd42010-08-04 12:34:56 -07001003 remap_visitor(struct gl_shader *target,
Ian Romanick7e2aa912010-07-19 17:12:42 -07001004 hash_table *temps)
Ian Romanick31a97862010-07-12 18:48:50 -07001005 {
Eric Anholt8273bd42010-08-04 12:34:56 -07001006 this->target = target;
1007 this->symbols = target->symbols;
1008 this->instructions = target->ir;
Ian Romanick7e2aa912010-07-19 17:12:42 -07001009 this->temps = temps;
Ian Romanick31a97862010-07-12 18:48:50 -07001010 }
1011
1012 virtual ir_visitor_status visit(ir_dereference_variable *ir)
1013 {
Tapani Pälli33ee2c62013-12-12 13:51:01 +02001014 if (ir->var->data.mode == ir_var_temporary) {
Ian Romanick7e2aa912010-07-19 17:12:42 -07001015 ir_variable *var = (ir_variable *) hash_table_find(temps, ir->var);
1016
1017 assert(var != NULL);
1018 ir->var = var;
1019 return visit_continue;
1020 }
1021
Ian Romanick31a97862010-07-12 18:48:50 -07001022 ir_variable *const existing =
1023 this->symbols->get_variable(ir->var->name);
1024 if (existing != NULL)
1025 ir->var = existing;
1026 else {
Eric Anholt8273bd42010-08-04 12:34:56 -07001027 ir_variable *copy = ir->var->clone(this->target, NULL);
Ian Romanick31a97862010-07-12 18:48:50 -07001028
Eric Anholt001eee52010-11-05 06:11:24 -07001029 this->symbols->add_variable(copy);
Ian Romanick31a97862010-07-12 18:48:50 -07001030 this->instructions->push_head(copy);
Ian Romanick7e2aa912010-07-19 17:12:42 -07001031 ir->var = copy;
Ian Romanick31a97862010-07-12 18:48:50 -07001032 }
1033
1034 return visit_continue;
1035 }
1036
1037 private:
Eric Anholt8273bd42010-08-04 12:34:56 -07001038 struct gl_shader *target;
Ian Romanick31a97862010-07-12 18:48:50 -07001039 glsl_symbol_table *symbols;
1040 exec_list *instructions;
Ian Romanick7e2aa912010-07-19 17:12:42 -07001041 hash_table *temps;
Ian Romanick31a97862010-07-12 18:48:50 -07001042 };
1043
Eric Anholt8273bd42010-08-04 12:34:56 -07001044 remap_visitor v(target, temps);
Ian Romanick31a97862010-07-12 18:48:50 -07001045
1046 inst->accept(&v);
1047}
1048
1049
1050/**
1051 * Move non-declarations from one instruction stream to another
1052 *
1053 * The intended usage pattern of this function is to pass the pointer to the
Eric Anholt62c47632010-07-29 13:52:25 -07001054 * head sentinel of a list (i.e., a pointer to the list cast to an \c exec_node
Ian Romanick31a97862010-07-12 18:48:50 -07001055 * pointer) for \c last and \c false for \c make_copies on the first
1056 * call. Successive calls pass the return value of the previous call for
1057 * \c last and \c true for \c make_copies.
1058 *
1059 * \param instructions Source instruction stream
1060 * \param last Instruction after which new instructions should be
1061 * inserted in the target instruction stream
1062 * \param make_copies Flag selecting whether instructions in \c instructions
1063 * should be copied (via \c ir_instruction::clone) into the
1064 * target list or moved.
1065 *
1066 * \return
1067 * The new "last" instruction in the target instruction stream. This pointer
1068 * is suitable for use as the \c last parameter of a later call to this
1069 * function.
1070 */
1071exec_node *
1072move_non_declarations(exec_list *instructions, exec_node *last,
1073 bool make_copies, gl_shader *target)
1074{
Ian Romanick7e2aa912010-07-19 17:12:42 -07001075 hash_table *temps = NULL;
1076
1077 if (make_copies)
1078 temps = hash_table_ctor(0, hash_table_pointer_hash,
1079 hash_table_pointer_compare);
1080
Matt Turnerc6a16f62014-06-24 21:58:35 -07001081 foreach_in_list_safe(ir_instruction, inst, instructions) {
Ian Romanick7e2aa912010-07-19 17:12:42 -07001082 if (inst->as_function())
Ian Romanick31a97862010-07-12 18:48:50 -07001083 continue;
1084
Ian Romanick7e2aa912010-07-19 17:12:42 -07001085 ir_variable *var = inst->as_variable();
Tapani Pälli33ee2c62013-12-12 13:51:01 +02001086 if ((var != NULL) && (var->data.mode != ir_var_temporary))
Ian Romanick7e2aa912010-07-19 17:12:42 -07001087 continue;
1088
1089 assert(inst->as_assignment()
Kenneth Graunked884f602012-03-20 15:56:37 -07001090 || inst->as_call()
Kenneth Graunkeb45a68e2012-10-24 13:17:24 -07001091 || inst->as_if() /* for initializers with the ?: operator */
Tapani Pälli33ee2c62013-12-12 13:51:01 +02001092 || ((var != NULL) && (var->data.mode == ir_var_temporary)));
Ian Romanick31a97862010-07-12 18:48:50 -07001093
1094 if (make_copies) {
Eric Anholt8273bd42010-08-04 12:34:56 -07001095 inst = inst->clone(target, NULL);
Ian Romanick7e2aa912010-07-19 17:12:42 -07001096
1097 if (var != NULL)
1098 hash_table_insert(temps, inst, var);
1099 else
Eric Anholt8273bd42010-08-04 12:34:56 -07001100 remap_variables(inst, target, temps);
Ian Romanick31a97862010-07-12 18:48:50 -07001101 } else {
1102 inst->remove();
1103 }
1104
1105 last->insert_after(inst);
1106 last = inst;
1107 }
1108
Ian Romanick7e2aa912010-07-19 17:12:42 -07001109 if (make_copies)
1110 hash_table_dtor(temps);
1111
Ian Romanick31a97862010-07-12 18:48:50 -07001112 return last;
1113}
1114
1115/**
Ian Romanick15ce87e2010-07-09 15:28:22 -07001116 * Get the function signature for main from a shader
1117 */
1118static ir_function_signature *
1119get_main_function_signature(gl_shader *sh)
1120{
1121 ir_function *const f = sh->symbols->get_function("main");
1122 if (f != NULL) {
1123 exec_list void_parameters;
1124
1125 /* Look for the 'void main()' signature and ensure that it's defined.
1126 * This keeps the linker from accidentally pick a shader that just
1127 * contains a prototype for main.
1128 *
1129 * We don't have to check for multiple definitions of main (in multiple
1130 * shaders) because that would have already been caught above.
1131 */
Kenneth Graunke21129d42014-07-24 14:05:40 -07001132 ir_function_signature *sig =
1133 f->matching_signature(NULL, &void_parameters, false);
Ian Romanick15ce87e2010-07-09 15:28:22 -07001134 if ((sig != NULL) && sig->is_defined) {
1135 return sig;
1136 }
1137 }
1138
1139 return NULL;
1140}
1141
1142
1143/**
Brian Paul84a12732012-02-02 20:10:40 -07001144 * This class is only used in link_intrastage_shaders() below but declaring
1145 * it inside that function leads to compiler warnings with some versions of
1146 * gcc.
1147 */
1148class array_sizing_visitor : public ir_hierarchical_visitor {
1149public:
Paul Berry15e05b92013-09-25 14:07:37 -07001150 array_sizing_visitor()
1151 : mem_ctx(ralloc_context(NULL)),
1152 unnamed_interfaces(hash_table_ctor(0, hash_table_pointer_hash,
1153 hash_table_pointer_compare))
1154 {
1155 }
1156
1157 ~array_sizing_visitor()
1158 {
1159 hash_table_dtor(this->unnamed_interfaces);
1160 ralloc_free(this->mem_ctx);
1161 }
1162
Brian Paul84a12732012-02-02 20:10:40 -07001163 virtual ir_visitor_status visit(ir_variable *var)
1164 {
Tapani Pälli447bb902013-12-12 15:08:59 +02001165 fixup_type(&var->type, var->data.max_array_access);
Paul Berrye2266692013-09-23 10:44:19 -07001166 if (var->type->is_interface()) {
1167 if (interface_contains_unsized_arrays(var->type)) {
1168 const glsl_type *new_type =
1169 resize_interface_members(var->type, var->max_ifc_array_access);
1170 var->type = new_type;
1171 var->change_interface_type(new_type);
1172 }
1173 } else if (var->type->is_array() &&
1174 var->type->fields.array->is_interface()) {
1175 if (interface_contains_unsized_arrays(var->type->fields.array)) {
1176 const glsl_type *new_type =
1177 resize_interface_members(var->type->fields.array,
1178 var->max_ifc_array_access);
1179 var->change_interface_type(new_type);
1180 var->type =
1181 glsl_type::get_array_instance(new_type, var->type->length);
1182 }
Paul Berry15e05b92013-09-25 14:07:37 -07001183 } else if (const glsl_type *ifc_type = var->get_interface_type()) {
1184 /* Store a pointer to the variable in the unnamed_interfaces
1185 * hashtable.
1186 */
1187 ir_variable **interface_vars = (ir_variable **)
1188 hash_table_find(this->unnamed_interfaces, ifc_type);
1189 if (interface_vars == NULL) {
1190 interface_vars = rzalloc_array(mem_ctx, ir_variable *,
1191 ifc_type->length);
1192 hash_table_insert(this->unnamed_interfaces, interface_vars,
1193 ifc_type);
1194 }
1195 unsigned index = ifc_type->field_index(var->name);
1196 assert(index < ifc_type->length);
1197 assert(interface_vars[index] == NULL);
1198 interface_vars[index] = var;
Brian Paul84a12732012-02-02 20:10:40 -07001199 }
1200 return visit_continue;
1201 }
Paul Berrye2266692013-09-23 10:44:19 -07001202
Paul Berry15e05b92013-09-25 14:07:37 -07001203 /**
1204 * For each unnamed interface block that was discovered while running the
1205 * visitor, adjust the interface type to reflect the newly assigned array
1206 * sizes, and fix up the ir_variable nodes to point to the new interface
1207 * type.
1208 */
1209 void fixup_unnamed_interface_types()
1210 {
1211 hash_table_call_foreach(this->unnamed_interfaces,
1212 fixup_unnamed_interface_type, NULL);
1213 }
1214
Paul Berrye2266692013-09-23 10:44:19 -07001215private:
1216 /**
1217 * If the type pointed to by \c type represents an unsized array, replace
1218 * it with a sized array whose size is determined by max_array_access.
1219 */
1220 static void fixup_type(const glsl_type **type, unsigned max_array_access)
1221 {
Timothy Arcerib59c5922013-10-23 21:31:27 +11001222 if ((*type)->is_unsized_array()) {
Paul Berrye2266692013-09-23 10:44:19 -07001223 *type = glsl_type::get_array_instance((*type)->fields.array,
1224 max_array_access + 1);
1225 assert(*type != NULL);
1226 }
1227 }
1228
1229 /**
1230 * Determine whether the given interface type contains unsized arrays (if
1231 * it doesn't, array_sizing_visitor doesn't need to process it).
1232 */
1233 static bool interface_contains_unsized_arrays(const glsl_type *type)
1234 {
1235 for (unsigned i = 0; i < type->length; i++) {
1236 const glsl_type *elem_type = type->fields.structure[i].type;
Timothy Arcerib59c5922013-10-23 21:31:27 +11001237 if (elem_type->is_unsized_array())
Paul Berrye2266692013-09-23 10:44:19 -07001238 return true;
1239 }
1240 return false;
1241 }
1242
1243 /**
1244 * Create a new interface type based on the given type, with unsized arrays
1245 * replaced by sized arrays whose size is determined by
1246 * max_ifc_array_access.
1247 */
1248 static const glsl_type *
1249 resize_interface_members(const glsl_type *type,
1250 const unsigned *max_ifc_array_access)
1251 {
1252 unsigned num_fields = type->length;
1253 glsl_struct_field *fields = new glsl_struct_field[num_fields];
1254 memcpy(fields, type->fields.structure,
1255 num_fields * sizeof(*fields));
1256 for (unsigned i = 0; i < num_fields; i++) {
1257 fixup_type(&fields[i].type, max_ifc_array_access[i]);
1258 }
1259 glsl_interface_packing packing =
1260 (glsl_interface_packing) type->interface_packing;
1261 const glsl_type *new_ifc_type =
1262 glsl_type::get_interface_instance(fields, num_fields,
1263 packing, type->name);
1264 delete [] fields;
1265 return new_ifc_type;
1266 }
Paul Berry15e05b92013-09-25 14:07:37 -07001267
1268 static void fixup_unnamed_interface_type(const void *key, void *data,
1269 void *)
1270 {
1271 const glsl_type *ifc_type = (const glsl_type *) key;
1272 ir_variable **interface_vars = (ir_variable **) data;
1273 unsigned num_fields = ifc_type->length;
1274 glsl_struct_field *fields = new glsl_struct_field[num_fields];
1275 memcpy(fields, ifc_type->fields.structure,
1276 num_fields * sizeof(*fields));
1277 bool interface_type_changed = false;
1278 for (unsigned i = 0; i < num_fields; i++) {
1279 if (interface_vars[i] != NULL &&
1280 fields[i].type != interface_vars[i]->type) {
1281 fields[i].type = interface_vars[i]->type;
1282 interface_type_changed = true;
1283 }
1284 }
1285 if (!interface_type_changed) {
1286 delete [] fields;
1287 return;
1288 }
1289 glsl_interface_packing packing =
1290 (glsl_interface_packing) ifc_type->interface_packing;
1291 const glsl_type *new_ifc_type =
1292 glsl_type::get_interface_instance(fields, num_fields, packing,
1293 ifc_type->name);
1294 delete [] fields;
1295 for (unsigned i = 0; i < num_fields; i++) {
1296 if (interface_vars[i] != NULL)
1297 interface_vars[i]->change_interface_type(new_ifc_type);
1298 }
1299 }
1300
1301 /**
1302 * Memory context used to allocate the data in \c unnamed_interfaces.
1303 */
1304 void *mem_ctx;
1305
1306 /**
1307 * Hash table from const glsl_type * to an array of ir_variable *'s
1308 * pointing to the ir_variables constituting each unnamed interface block.
1309 */
1310 hash_table *unnamed_interfaces;
Brian Paul84a12732012-02-02 20:10:40 -07001311};
1312
Brian Paul84a12732012-02-02 20:10:40 -07001313/**
Anuj Phogat35f11e82014-02-05 15:01:58 -08001314 * Performs the cross-validation of layout qualifiers specified in
1315 * redeclaration of gl_FragCoord for the attached fragment shaders,
1316 * and propagates them to the linked FS and linked shader program.
1317 */
1318static void
1319link_fs_input_layout_qualifiers(struct gl_shader_program *prog,
1320 struct gl_shader *linked_shader,
1321 struct gl_shader **shader_list,
1322 unsigned num_shaders)
1323{
1324 linked_shader->redeclares_gl_fragcoord = false;
1325 linked_shader->uses_gl_fragcoord = false;
1326 linked_shader->origin_upper_left = false;
1327 linked_shader->pixel_center_integer = false;
1328
Anuj Phogat9bcb0a82014-02-10 14:12:40 -08001329 if (linked_shader->Stage != MESA_SHADER_FRAGMENT ||
1330 (prog->Version < 150 && !prog->ARB_fragment_coord_conventions_enable))
Anuj Phogat35f11e82014-02-05 15:01:58 -08001331 return;
1332
1333 for (unsigned i = 0; i < num_shaders; i++) {
1334 struct gl_shader *shader = shader_list[i];
1335 /* From the GLSL 1.50 spec, page 39:
1336 *
1337 * "If gl_FragCoord is redeclared in any fragment shader in a program,
1338 * it must be redeclared in all the fragment shaders in that program
1339 * that have a static use gl_FragCoord."
1340 *
1341 * Exclude the case when one of the 'linked_shader' or 'shader' redeclares
1342 * gl_FragCoord with no layout qualifiers but the other one doesn't
1343 * redeclare it. If we strictly follow GLSL 1.50 spec's language, it
1344 * should be a link error. But, generating link error for this case will
1345 * be a wrong behaviour which spec didn't intend to do and it could also
1346 * break some applications.
1347 */
1348 if ((linked_shader->redeclares_gl_fragcoord
1349 && !shader->redeclares_gl_fragcoord
1350 && shader->uses_gl_fragcoord
1351 && (linked_shader->origin_upper_left
1352 || linked_shader->pixel_center_integer))
1353 || (shader->redeclares_gl_fragcoord
1354 && !linked_shader->redeclares_gl_fragcoord
1355 && linked_shader->uses_gl_fragcoord
1356 && (shader->origin_upper_left
1357 || shader->pixel_center_integer))) {
1358 linker_error(prog, "fragment shader defined with conflicting "
1359 "layout qualifiers for gl_FragCoord\n");
1360 }
1361
1362 /* From the GLSL 1.50 spec, page 39:
1363 *
1364 * "All redeclarations of gl_FragCoord in all fragment shaders in a
1365 * single program must have the same set of qualifiers."
1366 */
1367 if (linked_shader->redeclares_gl_fragcoord && shader->redeclares_gl_fragcoord
1368 && (shader->origin_upper_left != linked_shader->origin_upper_left
1369 || shader->pixel_center_integer != linked_shader->pixel_center_integer)) {
1370 linker_error(prog, "fragment shader defined with conflicting "
1371 "layout qualifiers for gl_FragCoord\n");
1372 }
1373
1374 /* Update the linked shader state.  Note that uses_gl_fragcoord should
1375 * accumulate the results.  The other values should replace.  If there
1376 * are multiple redeclarations, all the fields except uses_gl_fragcoord
1377 * are already known to be the same.
1378 */
1379 if (shader->redeclares_gl_fragcoord || shader->uses_gl_fragcoord) {
1380 linked_shader->redeclares_gl_fragcoord =
1381 shader->redeclares_gl_fragcoord;
1382 linked_shader->uses_gl_fragcoord = linked_shader->uses_gl_fragcoord
1383 || shader->uses_gl_fragcoord;
1384 linked_shader->origin_upper_left = shader->origin_upper_left;
1385 linked_shader->pixel_center_integer = shader->pixel_center_integer;
1386 }
1387 }
1388}
1389
1390/**
Eric Anholt6065a872013-06-12 18:12:40 -07001391 * Performs the cross-validation of geometry shader max_vertices and
1392 * primitive type layout qualifiers for the attached geometry shaders,
1393 * and propagates them to the linked GS and linked shader program.
1394 */
1395static void
1396link_gs_inout_layout_qualifiers(struct gl_shader_program *prog,
1397 struct gl_shader *linked_shader,
1398 struct gl_shader **shader_list,
1399 unsigned num_shaders)
1400{
1401 linked_shader->Geom.VerticesOut = 0;
Jordan Justen31340202014-01-25 02:17:21 -08001402 linked_shader->Geom.Invocations = 0;
Eric Anholt6065a872013-06-12 18:12:40 -07001403 linked_shader->Geom.InputType = PRIM_UNKNOWN;
1404 linked_shader->Geom.OutputType = PRIM_UNKNOWN;
1405
1406 /* No in/out qualifiers defined for anything but GLSL 1.50+
1407 * geometry shaders so far.
1408 */
Paul Berrye3b86f02014-01-07 10:58:56 -08001409 if (linked_shader->Stage != MESA_SHADER_GEOMETRY || prog->Version < 150)
Eric Anholt6065a872013-06-12 18:12:40 -07001410 return;
1411
1412 /* From the GLSL 1.50 spec, page 46:
1413 *
1414 * "All geometry shader output layout declarations in a program
1415 * must declare the same layout and same value for
1416 * max_vertices. There must be at least one geometry output
1417 * layout declaration somewhere in a program, but not all
1418 * geometry shaders (compilation units) are required to
1419 * declare it."
1420 */
1421
1422 for (unsigned i = 0; i < num_shaders; i++) {
1423 struct gl_shader *shader = shader_list[i];
1424
1425 if (shader->Geom.InputType != PRIM_UNKNOWN) {
1426 if (linked_shader->Geom.InputType != PRIM_UNKNOWN &&
1427 linked_shader->Geom.InputType != shader->Geom.InputType) {
1428 linker_error(prog, "geometry shader defined with conflicting "
1429 "input types\n");
1430 return;
1431 }
1432 linked_shader->Geom.InputType = shader->Geom.InputType;
1433 }
1434
1435 if (shader->Geom.OutputType != PRIM_UNKNOWN) {
1436 if (linked_shader->Geom.OutputType != PRIM_UNKNOWN &&
1437 linked_shader->Geom.OutputType != shader->Geom.OutputType) {
1438 linker_error(prog, "geometry shader defined with conflicting "
1439 "output types\n");
1440 return;
1441 }
1442 linked_shader->Geom.OutputType = shader->Geom.OutputType;
1443 }
1444
1445 if (shader->Geom.VerticesOut != 0) {
1446 if (linked_shader->Geom.VerticesOut != 0 &&
1447 linked_shader->Geom.VerticesOut != shader->Geom.VerticesOut) {
1448 linker_error(prog, "geometry shader defined with conflicting "
1449 "output vertex count (%d and %d)\n",
1450 linked_shader->Geom.VerticesOut,
1451 shader->Geom.VerticesOut);
1452 return;
1453 }
1454 linked_shader->Geom.VerticesOut = shader->Geom.VerticesOut;
1455 }
Jordan Justen31340202014-01-25 02:17:21 -08001456
1457 if (shader->Geom.Invocations != 0) {
1458 if (linked_shader->Geom.Invocations != 0 &&
1459 linked_shader->Geom.Invocations != shader->Geom.Invocations) {
1460 linker_error(prog, "geometry shader defined with conflicting "
1461 "invocation count (%d and %d)\n",
1462 linked_shader->Geom.Invocations,
1463 shader->Geom.Invocations);
1464 return;
1465 }
1466 linked_shader->Geom.Invocations = shader->Geom.Invocations;
1467 }
Eric Anholt6065a872013-06-12 18:12:40 -07001468 }
1469
1470 /* Just do the intrastage -> interstage propagation right now,
1471 * since we already know we're in the right type of shader program
1472 * for doing it.
1473 */
1474 if (linked_shader->Geom.InputType == PRIM_UNKNOWN) {
1475 linker_error(prog,
1476 "geometry shader didn't declare primitive input type\n");
1477 return;
1478 }
1479 prog->Geom.InputType = linked_shader->Geom.InputType;
1480
1481 if (linked_shader->Geom.OutputType == PRIM_UNKNOWN) {
1482 linker_error(prog,
1483 "geometry shader didn't declare primitive output type\n");
1484 return;
1485 }
1486 prog->Geom.OutputType = linked_shader->Geom.OutputType;
1487
1488 if (linked_shader->Geom.VerticesOut == 0) {
1489 linker_error(prog,
1490 "geometry shader didn't declare max_vertices\n");
1491 return;
1492 }
1493 prog->Geom.VerticesOut = linked_shader->Geom.VerticesOut;
Jordan Justen31340202014-01-25 02:17:21 -08001494
1495 if (linked_shader->Geom.Invocations == 0)
1496 linked_shader->Geom.Invocations = 1;
1497
1498 prog->Geom.Invocations = linked_shader->Geom.Invocations;
Eric Anholt6065a872013-06-12 18:12:40 -07001499}
1500
Paul Berry28ce6042014-01-08 11:59:28 -08001501
1502/**
1503 * Perform cross-validation of compute shader local_size_{x,y,z} layout
1504 * qualifiers for the attached compute shaders, and propagate them to the
1505 * linked CS and linked shader program.
1506 */
1507static void
1508link_cs_input_layout_qualifiers(struct gl_shader_program *prog,
1509 struct gl_shader *linked_shader,
1510 struct gl_shader **shader_list,
1511 unsigned num_shaders)
1512{
1513 for (int i = 0; i < 3; i++)
1514 linked_shader->Comp.LocalSize[i] = 0;
1515
1516 /* This function is called for all shader stages, but it only has an effect
1517 * for compute shaders.
1518 */
1519 if (linked_shader->Stage != MESA_SHADER_COMPUTE)
1520 return;
1521
1522 /* From the ARB_compute_shader spec, in the section describing local size
1523 * declarations:
1524 *
1525 * If multiple compute shaders attached to a single program object
1526 * declare local work-group size, the declarations must be identical;
1527 * otherwise a link-time error results. Furthermore, if a program
1528 * object contains any compute shaders, at least one must contain an
1529 * input layout qualifier specifying the local work sizes of the
1530 * program, or a link-time error will occur.
1531 */
1532 for (unsigned sh = 0; sh < num_shaders; sh++) {
1533 struct gl_shader *shader = shader_list[sh];
1534
1535 if (shader->Comp.LocalSize[0] != 0) {
1536 if (linked_shader->Comp.LocalSize[0] != 0) {
1537 for (int i = 0; i < 3; i++) {
1538 if (linked_shader->Comp.LocalSize[i] !=
1539 shader->Comp.LocalSize[i]) {
1540 linker_error(prog, "compute shader defined with conflicting "
1541 "local sizes\n");
1542 return;
1543 }
1544 }
1545 }
1546 for (int i = 0; i < 3; i++)
1547 linked_shader->Comp.LocalSize[i] = shader->Comp.LocalSize[i];
1548 }
1549 }
1550
1551 /* Just do the intrastage -> interstage propagation right now,
1552 * since we already know we're in the right type of shader program
1553 * for doing it.
1554 */
1555 if (linked_shader->Comp.LocalSize[0] == 0) {
1556 linker_error(prog, "compute shader didn't declare local size\n");
1557 return;
1558 }
1559 for (int i = 0; i < 3; i++)
1560 prog->Comp.LocalSize[i] = linked_shader->Comp.LocalSize[i];
1561}
1562
1563
Eric Anholt6065a872013-06-12 18:12:40 -07001564/**
Ian Romanick3fb87872010-07-09 14:09:34 -07001565 * Combine a group of shaders for a single stage to generate a linked shader
1566 *
1567 * \note
1568 * If this function is supplied a single shader, it is cloned, and the new
1569 * shader is returned.
1570 */
1571static struct gl_shader *
Kenneth Graunke2da02e72010-11-17 11:03:57 -08001572link_intrastage_shaders(void *mem_ctx,
1573 struct gl_context *ctx,
Eric Anholt5d0f4302010-08-18 12:02:35 -07001574 struct gl_shader_program *prog,
Ian Romanick3fb87872010-07-09 14:09:34 -07001575 struct gl_shader **shader_list,
1576 unsigned num_shaders)
1577{
Eric Anholtf609cf72012-04-27 13:52:56 -07001578 struct gl_uniform_block *uniform_blocks = NULL;
Eric Anholtf609cf72012-04-27 13:52:56 -07001579
Ian Romanick13f782c2010-06-29 18:53:38 -07001580 /* Check that global variables defined in multiple shaders are consistent.
1581 */
Paul Berryb95d2372013-07-27 11:08:31 -07001582 cross_validate_globals(prog, shader_list, num_shaders, false);
1583 if (!prog->LinkStatus)
Ian Romanick13f782c2010-06-29 18:53:38 -07001584 return NULL;
1585
Jordan Justen4a0bcd92013-05-20 23:42:49 -07001586 /* Check that interface blocks defined in multiple shaders are consistent.
1587 */
Paul Berryb95d2372013-07-27 11:08:31 -07001588 validate_intrastage_interface_blocks(prog, (const gl_shader **)shader_list,
1589 num_shaders);
1590 if (!prog->LinkStatus)
Jordan Justen4a0bcd92013-05-20 23:42:49 -07001591 return NULL;
1592
Paul Berry4682b9b2013-07-27 15:07:08 -07001593 /* Link up uniform blocks defined within this stage. */
1594 const unsigned num_uniform_blocks =
Ian Romanick514f8c72013-01-22 01:09:16 -05001595 link_uniform_blocks(mem_ctx, prog, shader_list, num_shaders,
1596 &uniform_blocks);
Juha-Pekka Heikkila088da372014-04-03 17:06:42 +03001597 if (!prog->LinkStatus)
1598 return NULL;
Eric Anholtf609cf72012-04-27 13:52:56 -07001599
Ian Romanick13f782c2010-06-29 18:53:38 -07001600 /* Check that there is only a single definition of each function signature
1601 * across all shaders.
1602 */
1603 for (unsigned i = 0; i < (num_shaders - 1); i++) {
Matt Turner4d784462014-06-24 21:34:05 -07001604 foreach_in_list(ir_instruction, node, shader_list[i]->ir) {
1605 ir_function *const f = node->as_function();
Ian Romanick13f782c2010-06-29 18:53:38 -07001606
1607 if (f == NULL)
1608 continue;
1609
1610 for (unsigned j = i + 1; j < num_shaders; j++) {
1611 ir_function *const other =
1612 shader_list[j]->symbols->get_function(f->name);
1613
1614 /* If the other shader has no function (and therefore no function
1615 * signatures) with the same name, skip to the next shader.
1616 */
1617 if (other == NULL)
1618 continue;
1619
Matt Turner4d784462014-06-24 21:34:05 -07001620 foreach_in_list(ir_function_signature, sig, &f->signatures) {
Kenneth Graunke4b0bac02013-08-30 16:12:55 -07001621 if (!sig->is_defined || sig->is_builtin())
Ian Romanick13f782c2010-06-29 18:53:38 -07001622 continue;
1623
1624 ir_function_signature *other_sig =
Kenneth Graunke3e820e32013-08-30 23:11:55 -07001625 other->exact_matching_signature(NULL, &sig->parameters);
Ian Romanick13f782c2010-06-29 18:53:38 -07001626
1627 if ((other_sig != NULL) && other_sig->is_defined
Kenneth Graunke4b0bac02013-08-30 16:12:55 -07001628 && !other_sig->is_builtin()) {
Ian Romanick586e7412011-07-28 14:04:09 -07001629 linker_error(prog, "function `%s' is multiply defined",
1630 f->name);
Ian Romanick13f782c2010-06-29 18:53:38 -07001631 return NULL;
1632 }
1633 }
1634 }
1635 }
1636 }
1637
1638 /* Find the shader that defines main, and make a clone of it.
1639 *
1640 * Starting with the clone, search for undefined references. If one is
1641 * found, find the shader that defines it. Clone the reference and add
1642 * it to the shader. Repeat until there are no undefined references or
1643 * until a reference cannot be resolved.
1644 */
Ian Romanick15ce87e2010-07-09 15:28:22 -07001645 gl_shader *main = NULL;
1646 for (unsigned i = 0; i < num_shaders; i++) {
1647 if (get_main_function_signature(shader_list[i]) != NULL) {
1648 main = shader_list[i];
1649 break;
1650 }
1651 }
Ian Romanick13f782c2010-06-29 18:53:38 -07001652
Ian Romanick15ce87e2010-07-09 15:28:22 -07001653 if (main == NULL) {
Ian Romanick586e7412011-07-28 14:04:09 -07001654 linker_error(prog, "%s shader lacks `main'\n",
Paul Berrye3b86f02014-01-07 10:58:56 -08001655 _mesa_shader_stage_to_string(shader_list[0]->Stage));
Ian Romanick15ce87e2010-07-09 15:28:22 -07001656 return NULL;
1657 }
1658
Ian Romanick4a455952010-10-13 15:13:02 -07001659 gl_shader *linked = ctx->Driver.NewShader(NULL, 0, main->Type);
Ian Romanick15ce87e2010-07-09 15:28:22 -07001660 linked->ir = new(linked) exec_list;
Kenneth Graunke2da02e72010-11-17 11:03:57 -08001661 clone_ir_list(mem_ctx, linked->ir, main->ir);
Ian Romanick15ce87e2010-07-09 15:28:22 -07001662
Eric Anholtf609cf72012-04-27 13:52:56 -07001663 linked->UniformBlocks = uniform_blocks;
1664 linked->NumUniformBlocks = num_uniform_blocks;
1665 ralloc_steal(linked, linked->UniformBlocks);
1666
Anuj Phogat35f11e82014-02-05 15:01:58 -08001667 link_fs_input_layout_qualifiers(prog, linked, shader_list, num_shaders);
Eric Anholt6065a872013-06-12 18:12:40 -07001668 link_gs_inout_layout_qualifiers(prog, linked, shader_list, num_shaders);
Paul Berry28ce6042014-01-08 11:59:28 -08001669 link_cs_input_layout_qualifiers(prog, linked, shader_list, num_shaders);
Eric Anholt6065a872013-06-12 18:12:40 -07001670
Ian Romanick15ce87e2010-07-09 15:28:22 -07001671 populate_symbol_table(linked);
Ian Romanick13f782c2010-06-29 18:53:38 -07001672
Ian Romanick31a97862010-07-12 18:48:50 -07001673 /* The a pointer to the main function in the final linked shader (i.e., the
1674 * copy of the original shader that contained the main function).
1675 */
1676 ir_function_signature *const main_sig = get_main_function_signature(linked);
1677
1678 /* Move any instructions other than variable declarations or function
1679 * declarations into main.
1680 */
Ian Romanick9303e352010-07-19 12:33:54 -07001681 exec_node *insertion_point =
1682 move_non_declarations(linked->ir, (exec_node *) &main_sig->body, false,
1683 linked);
1684
Ian Romanick31a97862010-07-12 18:48:50 -07001685 for (unsigned i = 0; i < num_shaders; i++) {
Ian Romanick9303e352010-07-19 12:33:54 -07001686 if (shader_list[i] == main)
1687 continue;
1688
Ian Romanick31a97862010-07-12 18:48:50 -07001689 insertion_point = move_non_declarations(shader_list[i]->ir,
Ian Romanick9303e352010-07-19 12:33:54 -07001690 insertion_point, true, linked);
Ian Romanick31a97862010-07-12 18:48:50 -07001691 }
1692
Kenneth Graunke5b331f62013-11-23 12:11:34 -08001693 /* Check if any shader needs built-in functions. */
1694 bool need_builtins = false;
Ian Romanickd5be2ac2010-07-20 11:29:46 -07001695 for (unsigned i = 0; i < num_shaders; i++) {
Kenneth Graunke5b331f62013-11-23 12:11:34 -08001696 if (shader_list[i]->uses_builtin_functions) {
1697 need_builtins = true;
1698 break;
1699 }
Ian Romanickd5be2ac2010-07-20 11:29:46 -07001700 }
1701
Kenneth Graunke5b331f62013-11-23 12:11:34 -08001702 bool ok;
1703 if (need_builtins) {
1704 /* Make a temporary array one larger than shader_list, which will hold
1705 * the built-in function shader as well.
1706 */
1707 gl_shader **linking_shaders = (gl_shader **)
1708 calloc(num_shaders + 1, sizeof(gl_shader *));
1709 memcpy(linking_shaders, shader_list, num_shaders * sizeof(gl_shader *));
1710 linking_shaders[num_shaders] = _mesa_glsl_get_builtin_function_shader();
Ian Romanickd5be2ac2010-07-20 11:29:46 -07001711
Kenneth Graunke5b331f62013-11-23 12:11:34 -08001712 ok = link_function_calls(prog, linked, linking_shaders, num_shaders + 1);
1713
Kenneth Graunke7d2423a2013-08-02 00:35:05 -07001714 free(linking_shaders);
Kenneth Graunke5b331f62013-11-23 12:11:34 -08001715 } else {
1716 ok = link_function_calls(prog, linked, shader_list, num_shaders);
1717 }
1718
1719
1720 if (!ok) {
1721 ctx->Driver.DeleteShader(ctx, linked);
Kenneth Graunke7d2423a2013-08-02 00:35:05 -07001722 return NULL;
Ian Romanick4a455952010-10-13 15:13:02 -07001723 }
Ian Romanickd5be2ac2010-07-20 11:29:46 -07001724
Paul Berryc148ef62011-08-03 15:37:01 -07001725 /* At this point linked should contain all of the linked IR, so
1726 * validate it to make sure nothing went wrong.
1727 */
Kenneth Graunke7d2423a2013-08-02 00:35:05 -07001728 validate_ir_tree(linked->ir);
Paul Berryc148ef62011-08-03 15:37:01 -07001729
Paul Berry7cfefe62013-07-30 21:13:48 -07001730 /* Set the size of geometry shader input arrays */
Paul Berrye3b86f02014-01-07 10:58:56 -08001731 if (linked->Stage == MESA_SHADER_GEOMETRY) {
Paul Berry7cfefe62013-07-30 21:13:48 -07001732 unsigned num_vertices = vertices_per_prim(prog->Geom.InputType);
1733 geom_array_resize_visitor input_resize_visitor(num_vertices, prog);
Matt Turner4d784462014-06-24 21:34:05 -07001734 foreach_in_list(ir_instruction, ir, linked->ir) {
Paul Berry7cfefe62013-07-30 21:13:48 -07001735 ir->accept(&input_resize_visitor);
1736 }
1737 }
1738
Ian Romanickc87e9ef2011-01-25 12:04:08 -08001739 /* Make a pass over all variable declarations to ensure that arrays with
Ian Romanick6f539212010-12-07 18:30:33 -08001740 * unspecified sizes have a size specified. The size is inferred from the
1741 * max_array_access field.
1742 */
Kenneth Graunke7d2423a2013-08-02 00:35:05 -07001743 array_sizing_visitor v;
1744 v.run(linked->ir);
Paul Berry15e05b92013-09-25 14:07:37 -07001745 v.fixup_unnamed_interface_types();
Ian Romanick6f539212010-12-07 18:30:33 -08001746
Ian Romanick3fb87872010-07-09 14:09:34 -07001747 return linked;
1748}
1749
Eric Anholta721abf2010-08-23 10:32:01 -07001750/**
1751 * Update the sizes of linked shader uniform arrays to the maximum
1752 * array index used.
1753 *
1754 * From page 81 (page 95 of the PDF) of the OpenGL 2.1 spec:
1755 *
1756 * If one or more elements of an array are active,
1757 * GetActiveUniform will return the name of the array in name,
1758 * subject to the restrictions listed above. The type of the array
1759 * is returned in type. The size parameter contains the highest
1760 * array element index used, plus one. The compiler or linker
1761 * determines the highest index used. There will be only one
1762 * active uniform reported by the GL per uniform array.
1763
1764 */
1765static void
Eric Anholt586b4b52010-09-28 14:32:16 -07001766update_array_sizes(struct gl_shader_program *prog)
Eric Anholta721abf2010-08-23 10:32:01 -07001767{
Paul Berry665b8d72014-01-07 10:11:39 -08001768 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Ian Romanick3322fba2010-10-14 13:28:42 -07001769 if (prog->_LinkedShaders[i] == NULL)
1770 continue;
1771
Matt Turner4d784462014-06-24 21:34:05 -07001772 foreach_in_list(ir_instruction, node, prog->_LinkedShaders[i]->ir) {
1773 ir_variable *const var = node->as_variable();
Eric Anholta721abf2010-08-23 10:32:01 -07001774
Tapani Pälli33ee2c62013-12-12 13:51:01 +02001775 if ((var == NULL) || (var->data.mode != ir_var_uniform) ||
Eric Anholta721abf2010-08-23 10:32:01 -07001776 !var->type->is_array())
1777 continue;
1778
Eric Anholt9feb4032012-05-01 14:43:31 -07001779 /* GL_ARB_uniform_buffer_object says that std140 uniforms
1780 * will not be eliminated. Since we always do std140, just
1781 * don't resize arrays in UBOs.
Francisco Jerez5c114932013-09-11 12:14:46 -07001782 *
1783 * Atomic counters are supposed to get deterministic
1784 * locations assigned based on the declaration ordering and
1785 * sizes, array compaction would mess that up.
Eric Anholt9feb4032012-05-01 14:43:31 -07001786 */
Francisco Jerez5c114932013-09-11 12:14:46 -07001787 if (var->is_in_uniform_block() || var->type->contains_atomic())
Eric Anholt9feb4032012-05-01 14:43:31 -07001788 continue;
1789
Tapani Pälli447bb902013-12-12 15:08:59 +02001790 unsigned int size = var->data.max_array_access;
Paul Berry665b8d72014-01-07 10:11:39 -08001791 for (unsigned j = 0; j < MESA_SHADER_STAGES; j++) {
Ian Romanick3322fba2010-10-14 13:28:42 -07001792 if (prog->_LinkedShaders[j] == NULL)
1793 continue;
1794
Matt Turner4d784462014-06-24 21:34:05 -07001795 foreach_in_list(ir_instruction, node2, prog->_LinkedShaders[j]->ir) {
1796 ir_variable *other_var = node2->as_variable();
Eric Anholta721abf2010-08-23 10:32:01 -07001797 if (!other_var)
1798 continue;
1799
1800 if (strcmp(var->name, other_var->name) == 0 &&
Tapani Pälli447bb902013-12-12 15:08:59 +02001801 other_var->data.max_array_access > size) {
1802 size = other_var->data.max_array_access;
Eric Anholta721abf2010-08-23 10:32:01 -07001803 }
1804 }
1805 }
Eric Anholt586b4b52010-09-28 14:32:16 -07001806
Fabian Bieler63684782013-06-14 13:37:07 +02001807 if (size + 1 != var->type->length) {
Ian Romanick89d81ab2011-01-25 10:41:20 -08001808 /* If this is a built-in uniform (i.e., it's backed by some
1809 * fixed-function state), adjust the number of state slots to
1810 * match the new array size. The number of slots per array entry
Bryan Cainf18a0862011-04-23 19:29:15 -05001811 * is not known. It seems safe to assume that the total number of
Ian Romanick89d81ab2011-01-25 10:41:20 -08001812 * slots is an integer multiple of the number of array elements.
1813 * Determine the number of slots per array element by dividing by
1814 * the old (total) size.
1815 */
1816 if (var->num_state_slots > 0) {
1817 var->num_state_slots = (size + 1)
1818 * (var->num_state_slots / var->type->length);
1819 }
1820
Eric Anholta721abf2010-08-23 10:32:01 -07001821 var->type = glsl_type::get_array_instance(var->type->fields.array,
1822 size + 1);
1823 /* FINISHME: We should update the types of array
1824 * dereferences of this variable now.
1825 */
1826 }
1827 }
1828 }
1829}
1830
Ian Romanick69846702010-06-22 17:29:19 -07001831/**
Bryan Cainf18a0862011-04-23 19:29:15 -05001832 * Find a contiguous set of available bits in a bitmask.
Ian Romanick69846702010-06-22 17:29:19 -07001833 *
1834 * \param used_mask Bits representing used (1) and unused (0) locations
1835 * \param needed_count Number of contiguous bits needed.
1836 *
1837 * \return
1838 * Base location of the available bits on success or -1 on failure.
1839 */
1840int
1841find_available_slots(unsigned used_mask, unsigned needed_count)
1842{
1843 unsigned needed_mask = (1 << needed_count) - 1;
1844 const int max_bit_to_test = (8 * sizeof(used_mask)) - needed_count;
1845
1846 /* The comparison to 32 is redundant, but without it GCC emits "warning:
1847 * cannot optimize possibly infinite loops" for the loop below.
1848 */
1849 if ((needed_count == 0) || (max_bit_to_test < 0) || (max_bit_to_test > 32))
1850 return -1;
1851
1852 for (int i = 0; i <= max_bit_to_test; i++) {
1853 if ((needed_mask & ~used_mask) == needed_mask)
1854 return i;
1855
1856 needed_mask <<= 1;
1857 }
1858
1859 return -1;
1860}
1861
1862
Ian Romanickd32d4f72011-06-27 17:59:58 -07001863/**
1864 * Assign locations for either VS inputs for FS outputs
1865 *
1866 * \param prog Shader program whose variables need locations assigned
1867 * \param target_index Selector for the program target to receive location
1868 * assignmnets. Must be either \c MESA_SHADER_VERTEX or
1869 * \c MESA_SHADER_FRAGMENT.
1870 * \param max_index Maximum number of generic locations. This corresponds
1871 * to either the maximum number of draw buffers or the
1872 * maximum number of generic attributes.
1873 *
1874 * \return
1875 * If locations are successfully assigned, true is returned. Otherwise an
1876 * error is emitted to the shader link log and false is returned.
Ian Romanickd32d4f72011-06-27 17:59:58 -07001877 */
Ian Romanick69846702010-06-22 17:29:19 -07001878bool
Ian Romanickd32d4f72011-06-27 17:59:58 -07001879assign_attribute_or_color_locations(gl_shader_program *prog,
1880 unsigned target_index,
1881 unsigned max_index)
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001882{
Ian Romanickd32d4f72011-06-27 17:59:58 -07001883 /* Mark invalid locations as being used.
Ian Romanick9342d262010-06-22 17:41:37 -07001884 */
Ian Romanickd32d4f72011-06-27 17:59:58 -07001885 unsigned used_locations = (max_index >= 32)
1886 ? ~0 : ~((1 << max_index) - 1);
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001887
Ian Romanickd32d4f72011-06-27 17:59:58 -07001888 assert((target_index == MESA_SHADER_VERTEX)
1889 || (target_index == MESA_SHADER_FRAGMENT));
1890
1891 gl_shader *const sh = prog->_LinkedShaders[target_index];
1892 if (sh == NULL)
1893 return true;
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001894
Ian Romanick69846702010-06-22 17:29:19 -07001895 /* Operate in a total of four passes.
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001896 *
1897 * 1. Invalidate the location assignments for all vertex shader inputs.
1898 *
1899 * 2. Assign locations for inputs that have user-defined (via
Ian Romanickb12b5d92011-11-04 16:08:52 -07001900 * glBindVertexAttribLocation) locations and outputs that have
1901 * user-defined locations (via glBindFragDataLocation).
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001902 *
Ian Romanick69846702010-06-22 17:29:19 -07001903 * 3. Sort the attributes without assigned locations by number of slots
1904 * required in decreasing order. Fragmentation caused by attribute
1905 * locations assigned by the application may prevent large attributes
1906 * from having enough contiguous space.
1907 *
1908 * 4. Assign locations to any inputs without assigned locations.
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001909 */
1910
Ian Romanickd32d4f72011-06-27 17:59:58 -07001911 const int generic_base = (target_index == MESA_SHADER_VERTEX)
Brian Paul7eb7d672011-07-07 16:47:59 -06001912 ? (int) VERT_ATTRIB_GENERIC0 : (int) FRAG_RESULT_DATA0;
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001913
Ian Romanickd32d4f72011-06-27 17:59:58 -07001914 const enum ir_variable_mode direction =
Paul Berry42a29d82013-01-11 14:39:32 -08001915 (target_index == MESA_SHADER_VERTEX)
1916 ? ir_var_shader_in : ir_var_shader_out;
Ian Romanickd32d4f72011-06-27 17:59:58 -07001917
1918
Ian Romanick69846702010-06-22 17:29:19 -07001919 /* Temporary storage for the set of attributes that need locations assigned.
1920 */
1921 struct temp_attr {
1922 unsigned slots;
1923 ir_variable *var;
1924
1925 /* Used below in the call to qsort. */
1926 static int compare(const void *a, const void *b)
1927 {
1928 const temp_attr *const l = (const temp_attr *) a;
1929 const temp_attr *const r = (const temp_attr *) b;
1930
1931 /* Reversed because we want a descending order sort below. */
1932 return r->slots - l->slots;
1933 }
1934 } to_assign[16];
1935
1936 unsigned num_attr = 0;
1937
Matt Turner4d784462014-06-24 21:34:05 -07001938 foreach_in_list(ir_instruction, node, sh->ir) {
1939 ir_variable *const var = node->as_variable();
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001940
Tapani Pälli33ee2c62013-12-12 13:51:01 +02001941 if ((var == NULL) || (var->data.mode != (unsigned) direction))
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001942 continue;
1943
Tapani Pälli447bb902013-12-12 15:08:59 +02001944 if (var->data.explicit_location) {
1945 if ((var->data.location >= (int)(max_index + generic_base))
1946 || (var->data.location < 0)) {
Ian Romanick586e7412011-07-28 14:04:09 -07001947 linker_error(prog,
1948 "invalid explicit location %d specified for `%s'\n",
Tapani Pälli447bb902013-12-12 15:08:59 +02001949 (var->data.location < 0)
1950 ? var->data.location
1951 : var->data.location - generic_base,
Ian Romanick586e7412011-07-28 14:04:09 -07001952 var->name);
Ian Romanick68a4fc92010-10-07 17:21:22 -07001953 return false;
Ian Romanick523b6112011-08-17 15:40:03 -07001954 }
1955 } else if (target_index == MESA_SHADER_VERTEX) {
1956 unsigned binding;
1957
1958 if (prog->AttributeBindings->get(binding, var->name)) {
1959 assert(binding >= VERT_ATTRIB_GENERIC0);
Tapani Pälli447bb902013-12-12 15:08:59 +02001960 var->data.location = binding;
1961 var->data.is_unmatched_generic_inout = 0;
Ian Romanick68a4fc92010-10-07 17:21:22 -07001962 }
Ian Romanickb12b5d92011-11-04 16:08:52 -07001963 } else if (target_index == MESA_SHADER_FRAGMENT) {
1964 unsigned binding;
Dave Airlie1256a5d2012-03-24 13:33:41 +00001965 unsigned index;
Ian Romanickb12b5d92011-11-04 16:08:52 -07001966
1967 if (prog->FragDataBindings->get(binding, var->name)) {
1968 assert(binding >= FRAG_RESULT_DATA0);
Tapani Pälli447bb902013-12-12 15:08:59 +02001969 var->data.location = binding;
1970 var->data.is_unmatched_generic_inout = 0;
Dave Airlie1256a5d2012-03-24 13:33:41 +00001971
1972 if (prog->FragDataIndexBindings->get(index, var->name)) {
Tapani Pälli447bb902013-12-12 15:08:59 +02001973 var->data.index = index;
Dave Airlie1256a5d2012-03-24 13:33:41 +00001974 }
Ian Romanickb12b5d92011-11-04 16:08:52 -07001975 }
Ian Romanick68a4fc92010-10-07 17:21:22 -07001976 }
1977
Ian Romanick9f0e98d2011-10-06 10:25:34 -07001978 /* If the variable is not a built-in and has a location statically
1979 * assigned in the shader (presumably via a layout qualifier), make sure
1980 * that it doesn't collide with other assigned locations. Otherwise,
1981 * add it to the list of variables that need linker-assigned locations.
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001982 */
Paul Berry0026ad42013-07-31 08:15:08 -07001983 const unsigned slots = var->type->count_attribute_slots();
Tapani Pälli447bb902013-12-12 15:08:59 +02001984 if (var->data.location != -1) {
1985 if (var->data.location >= generic_base && var->data.index < 1) {
Ian Romanick523b6112011-08-17 15:40:03 -07001986 /* From page 61 of the OpenGL 4.0 spec:
1987 *
1988 * "LinkProgram will fail if the attribute bindings assigned
1989 * by BindAttribLocation do not leave not enough space to
1990 * assign a location for an active matrix attribute or an
1991 * active attribute array, both of which require multiple
1992 * contiguous generic attributes."
1993 *
Anuj Phogat8c61b6a2014-03-04 17:03:28 -08001994 * I think above text prohibits the aliasing of explicit and
1995 * automatic assignments. But, aliasing is allowed in manual
1996 * assignments of attribute locations. See below comments for
1997 * the details.
Ian Romanick523b6112011-08-17 15:40:03 -07001998 *
Anuj Phogat8c61b6a2014-03-04 17:03:28 -08001999 * From OpenGL 4.0 spec, page 61:
Ian Romanick523b6112011-08-17 15:40:03 -07002000 *
2001 * "It is possible for an application to bind more than one
2002 * attribute name to the same location. This is referred to as
2003 * aliasing. This will only work if only one of the aliased
2004 * attributes is active in the executable program, or if no
2005 * path through the shader consumes more than one attribute of
2006 * a set of attributes aliased to the same location. A link
2007 * error can occur if the linker determines that every path
2008 * through the shader consumes multiple aliased attributes,
2009 * but implementations are not required to generate an error
2010 * in this case."
2011 *
Anuj Phogat8c61b6a2014-03-04 17:03:28 -08002012 * From GLSL 4.30 spec, page 54:
2013 *
2014 * "A program will fail to link if any two non-vertex shader
2015 * input variables are assigned to the same location. For
2016 * vertex shaders, multiple input variables may be assigned
2017 * to the same location using either layout qualifiers or via
2018 * the OpenGL API. However, such aliasing is intended only to
2019 * support vertex shaders where each execution path accesses
2020 * at most one input per each location. Implementations are
2021 * permitted, but not required, to generate link-time errors
2022 * if they detect that every path through the vertex shader
2023 * executable accesses multiple inputs assigned to any single
2024 * location. For all shader types, a program will fail to link
2025 * if explicit location assignments leave the linker unable
2026 * to find space for other variables without explicit
2027 * assignments."
2028 *
2029 * From OpenGL ES 3.0 spec, page 56:
2030 *
2031 * "Binding more than one attribute name to the same location
2032 * is referred to as aliasing, and is not permitted in OpenGL
2033 * ES Shading Language 3.00 vertex shaders. LinkProgram will
2034 * fail when this condition exists. However, aliasing is
2035 * possible in OpenGL ES Shading Language 1.00 vertex shaders.
2036 * This will only work if only one of the aliased attributes
2037 * is active in the executable program, or if no path through
2038 * the shader consumes more than one attribute of a set of
2039 * attributes aliased to the same location. A link error can
2040 * occur if the linker determines that every path through the
2041 * shader consumes multiple aliased attributes, but implemen-
2042 * tations are not required to generate an error in this case."
2043 *
2044 * After looking at above references from OpenGL, OpenGL ES and
2045 * GLSL specifications, we allow aliasing of vertex input variables
2046 * in: OpenGL 2.0 (and above) and OpenGL ES 2.0.
2047 *
2048 * NOTE: This is not required by the spec but its worth mentioning
2049 * here that we're not doing anything to make sure that no path
2050 * through the vertex shader executable accesses multiple inputs
2051 * assigned to any single location.
Ian Romanick523b6112011-08-17 15:40:03 -07002052 */
Anuj Phogat8c61b6a2014-03-04 17:03:28 -08002053
Ian Romanick523b6112011-08-17 15:40:03 -07002054 /* Mask representing the contiguous slots that will be used by
2055 * this attribute.
2056 */
Tapani Pälli447bb902013-12-12 15:08:59 +02002057 const unsigned attr = var->data.location - generic_base;
Ian Romanick523b6112011-08-17 15:40:03 -07002058 const unsigned use_mask = (1 << slots) - 1;
Anuj Phogat8c61b6a2014-03-04 17:03:28 -08002059 const char *const string = (target_index == MESA_SHADER_VERTEX)
2060 ? "vertex shader input" : "fragment shader output";
2061
2062 /* Generate a link error if the requested locations for this
2063 * attribute exceed the maximum allowed attribute location.
2064 */
2065 if (attr + slots > max_index) {
2066 linker_error(prog,
2067 "insufficient contiguous locations "
2068 "available for %s `%s' %d %d %d", string,
2069 var->name, used_locations, use_mask, attr);
2070 return false;
2071 }
Ian Romanick0ad22cd2010-06-21 17:18:31 -07002072
Ian Romanick523b6112011-08-17 15:40:03 -07002073 /* Generate a link error if the set of bits requested for this
2074 * attribute overlaps any previously allocated bits.
2075 */
2076 if ((~(use_mask << attr) & used_locations) != used_locations) {
Anuj Phogat8c61b6a2014-03-04 17:03:28 -08002077 if (target_index == MESA_SHADER_FRAGMENT ||
2078 (prog->IsES && prog->Version >= 300)) {
2079 linker_error(prog,
2080 "overlapping location is assigned "
2081 "to %s `%s' %d %d %d\n", string,
2082 var->name, used_locations, use_mask, attr);
2083 return false;
2084 } else {
2085 linker_warning(prog,
2086 "overlapping location is assigned "
2087 "to %s `%s' %d %d %d\n", string,
2088 var->name, used_locations, use_mask, attr);
2089 }
Ian Romanick523b6112011-08-17 15:40:03 -07002090 }
2091
2092 used_locations |= (use_mask << attr);
2093 }
2094
2095 continue;
2096 }
2097
2098 to_assign[num_attr].slots = slots;
Ian Romanick69846702010-06-22 17:29:19 -07002099 to_assign[num_attr].var = var;
2100 num_attr++;
Ian Romanick0ad22cd2010-06-21 17:18:31 -07002101 }
Ian Romanick69846702010-06-22 17:29:19 -07002102
2103 /* If all of the attributes were assigned locations by the application (or
2104 * are built-in attributes with fixed locations), return early. This should
2105 * be the common case.
2106 */
2107 if (num_attr == 0)
2108 return true;
2109
2110 qsort(to_assign, num_attr, sizeof(to_assign[0]), temp_attr::compare);
2111
Ian Romanickd32d4f72011-06-27 17:59:58 -07002112 if (target_index == MESA_SHADER_VERTEX) {
2113 /* VERT_ATTRIB_GENERIC0 is a pseudo-alias for VERT_ATTRIB_POS. It can
2114 * only be explicitly assigned by via glBindAttribLocation. Mark it as
2115 * reserved to prevent it from being automatically allocated below.
2116 */
2117 find_deref_visitor find("gl_Vertex");
2118 find.run(sh->ir);
2119 if (find.variable_found())
2120 used_locations |= (1 << 0);
2121 }
Ian Romanick982e3792010-06-29 18:58:20 -07002122
Ian Romanick69846702010-06-22 17:29:19 -07002123 for (unsigned i = 0; i < num_attr; i++) {
2124 /* Mask representing the contiguous slots that will be used by this
2125 * attribute.
2126 */
2127 const unsigned use_mask = (1 << to_assign[i].slots) - 1;
2128
2129 int location = find_available_slots(used_locations, to_assign[i].slots);
2130
2131 if (location < 0) {
Ian Romanickd32d4f72011-06-27 17:59:58 -07002132 const char *const string = (target_index == MESA_SHADER_VERTEX)
2133 ? "vertex shader input" : "fragment shader output";
2134
Ian Romanick586e7412011-07-28 14:04:09 -07002135 linker_error(prog,
Dave Airlie7449ae42011-11-20 19:56:35 +00002136 "insufficient contiguous locations "
Ian Romanick586e7412011-07-28 14:04:09 -07002137 "available for %s `%s'",
2138 string, to_assign[i].var->name);
Ian Romanick69846702010-06-22 17:29:19 -07002139 return false;
2140 }
2141
Tapani Pälli447bb902013-12-12 15:08:59 +02002142 to_assign[i].var->data.location = generic_base + location;
2143 to_assign[i].var->data.is_unmatched_generic_inout = 0;
Ian Romanick69846702010-06-22 17:29:19 -07002144 used_locations |= (use_mask << location);
2145 }
2146
2147 return true;
Ian Romanick0ad22cd2010-06-21 17:18:31 -07002148}
2149
2150
Ian Romanick40e114b2010-08-17 14:55:50 -07002151/**
Ian Romanickcc90e622010-10-19 17:59:10 -07002152 * Demote shader inputs and outputs that are not used in other stages
Ian Romanick40e114b2010-08-17 14:55:50 -07002153 */
2154void
Ian Romanickcc90e622010-10-19 17:59:10 -07002155demote_shader_inputs_and_outputs(gl_shader *sh, enum ir_variable_mode mode)
Ian Romanick40e114b2010-08-17 14:55:50 -07002156{
Matt Turner4d784462014-06-24 21:34:05 -07002157 foreach_in_list(ir_instruction, node, sh->ir) {
2158 ir_variable *const var = node->as_variable();
Ian Romanick40e114b2010-08-17 14:55:50 -07002159
Tapani Pälli33ee2c62013-12-12 13:51:01 +02002160 if ((var == NULL) || (var->data.mode != int(mode)))
Ian Romanick40e114b2010-08-17 14:55:50 -07002161 continue;
2162
Ian Romanickcc90e622010-10-19 17:59:10 -07002163 /* A shader 'in' or 'out' variable is only really an input or output if
2164 * its value is used by other shader stages. This will cause the variable
2165 * to have a location assigned.
Ian Romanick40e114b2010-08-17 14:55:50 -07002166 */
Tapani Pälli447bb902013-12-12 15:08:59 +02002167 if (var->data.is_unmatched_generic_inout) {
Tapani Pälli33ee2c62013-12-12 13:51:01 +02002168 var->data.mode = ir_var_auto;
Ian Romanick40e114b2010-08-17 14:55:50 -07002169 }
2170 }
2171}
2172
2173
Paul Berry871ddb92011-11-05 11:17:32 -07002174/**
Marek Olšákec174a42011-11-18 15:00:10 +01002175 * Store the gl_FragDepth layout in the gl_shader_program struct.
2176 */
2177static void
2178store_fragdepth_layout(struct gl_shader_program *prog)
2179{
2180 if (prog->_LinkedShaders[MESA_SHADER_FRAGMENT] == NULL) {
2181 return;
2182 }
2183
2184 struct exec_list *ir = prog->_LinkedShaders[MESA_SHADER_FRAGMENT]->ir;
2185
2186 /* We don't look up the gl_FragDepth symbol directly because if
2187 * gl_FragDepth is not used in the shader, it's removed from the IR.
2188 * However, the symbol won't be removed from the symbol table.
2189 *
2190 * We're only interested in the cases where the variable is NOT removed
2191 * from the IR.
2192 */
Matt Turner4d784462014-06-24 21:34:05 -07002193 foreach_in_list(ir_instruction, node, ir) {
2194 ir_variable *const var = node->as_variable();
Marek Olšákec174a42011-11-18 15:00:10 +01002195
Tapani Pälli33ee2c62013-12-12 13:51:01 +02002196 if (var == NULL || var->data.mode != ir_var_shader_out) {
Marek Olšákec174a42011-11-18 15:00:10 +01002197 continue;
2198 }
2199
2200 if (strcmp(var->name, "gl_FragDepth") == 0) {
Tapani Pälli447bb902013-12-12 15:08:59 +02002201 switch (var->data.depth_layout) {
Marek Olšákec174a42011-11-18 15:00:10 +01002202 case ir_depth_layout_none:
2203 prog->FragDepthLayout = FRAG_DEPTH_LAYOUT_NONE;
2204 return;
2205 case ir_depth_layout_any:
2206 prog->FragDepthLayout = FRAG_DEPTH_LAYOUT_ANY;
2207 return;
2208 case ir_depth_layout_greater:
2209 prog->FragDepthLayout = FRAG_DEPTH_LAYOUT_GREATER;
2210 return;
2211 case ir_depth_layout_less:
2212 prog->FragDepthLayout = FRAG_DEPTH_LAYOUT_LESS;
2213 return;
2214 case ir_depth_layout_unchanged:
2215 prog->FragDepthLayout = FRAG_DEPTH_LAYOUT_UNCHANGED;
2216 return;
2217 default:
2218 assert(0);
2219 return;
2220 }
2221 }
2222 }
2223}
2224
2225/**
Ian Romanick92f81592011-11-08 12:37:19 -08002226 * Validate the resources used by a program versus the implementation limits
2227 */
Paul Berryb95d2372013-07-27 11:08:31 -07002228static void
Ian Romanick92f81592011-11-08 12:37:19 -08002229check_resources(struct gl_context *ctx, struct gl_shader_program *prog)
2230{
Paul Berry665b8d72014-01-07 10:11:39 -08002231 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Ian Romanick92f81592011-11-08 12:37:19 -08002232 struct gl_shader *sh = prog->_LinkedShaders[i];
2233
2234 if (sh == NULL)
2235 continue;
2236
Paul Berrybce8bc02014-01-08 10:17:01 -08002237 if (sh->num_samplers > ctx->Const.Program[i].MaxTextureImageUnits) {
Ian Romanick92f81592011-11-08 12:37:19 -08002238 linker_error(prog, "Too many %s shader texture samplers",
Paul Berry665b8d72014-01-07 10:11:39 -08002239 _mesa_shader_stage_to_string(i));
Ian Romanick92f81592011-11-08 12:37:19 -08002240 }
2241
Paul Berrybce8bc02014-01-08 10:17:01 -08002242 if (sh->num_uniform_components >
2243 ctx->Const.Program[i].MaxUniformComponents) {
Eric Anholt38e77e52013-05-23 11:10:15 -07002244 if (ctx->Const.GLSLSkipStrictMaxUniformLimitCheck) {
2245 linker_warning(prog, "Too many %s shader default uniform block "
2246 "components, but the driver will try to optimize "
2247 "them out; this is non-portable out-of-spec "
2248 "behavior\n",
Paul Berry665b8d72014-01-07 10:11:39 -08002249 _mesa_shader_stage_to_string(i));
Eric Anholt38e77e52013-05-23 11:10:15 -07002250 } else {
2251 linker_error(prog, "Too many %s shader default uniform block "
2252 "components",
Paul Berry665b8d72014-01-07 10:11:39 -08002253 _mesa_shader_stage_to_string(i));
Eric Anholt38e77e52013-05-23 11:10:15 -07002254 }
2255 }
2256
2257 if (sh->num_combined_uniform_components >
Paul Berrybce8bc02014-01-08 10:17:01 -08002258 ctx->Const.Program[i].MaxCombinedUniformComponents) {
Marek Olšákdf809ae2011-12-10 04:14:46 +01002259 if (ctx->Const.GLSLSkipStrictMaxUniformLimitCheck) {
2260 linker_warning(prog, "Too many %s shader uniform components, "
2261 "but the driver will try to optimize them out; "
2262 "this is non-portable out-of-spec behavior\n",
Paul Berry665b8d72014-01-07 10:11:39 -08002263 _mesa_shader_stage_to_string(i));
Marek Olšákdf809ae2011-12-10 04:14:46 +01002264 } else {
2265 linker_error(prog, "Too many %s shader uniform components",
Paul Berry665b8d72014-01-07 10:11:39 -08002266 _mesa_shader_stage_to_string(i));
Marek Olšákdf809ae2011-12-10 04:14:46 +01002267 }
Ian Romanick92f81592011-11-08 12:37:19 -08002268 }
2269 }
2270
Paul Berry665b8d72014-01-07 10:11:39 -08002271 unsigned blocks[MESA_SHADER_STAGES] = {0};
Eric Anholt877a8972012-06-25 12:47:01 -07002272 unsigned total_uniform_blocks = 0;
2273
2274 for (unsigned i = 0; i < prog->NumUniformBlocks; i++) {
Paul Berry665b8d72014-01-07 10:11:39 -08002275 for (unsigned j = 0; j < MESA_SHADER_STAGES; j++) {
Eric Anholt877a8972012-06-25 12:47:01 -07002276 if (prog->UniformBlockStageIndex[j][i] != -1) {
2277 blocks[j]++;
2278 total_uniform_blocks++;
2279 }
2280 }
2281
2282 if (total_uniform_blocks > ctx->Const.MaxCombinedUniformBlocks) {
2283 linker_error(prog, "Too many combined uniform blocks (%d/%d)",
2284 prog->NumUniformBlocks,
2285 ctx->Const.MaxCombinedUniformBlocks);
2286 } else {
Paul Berry665b8d72014-01-07 10:11:39 -08002287 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Paul Berrybce8bc02014-01-08 10:17:01 -08002288 const unsigned max_uniform_blocks =
2289 ctx->Const.Program[i].MaxUniformBlocks;
2290 if (blocks[i] > max_uniform_blocks) {
Eric Anholt877a8972012-06-25 12:47:01 -07002291 linker_error(prog, "Too many %s uniform blocks (%d/%d)",
Paul Berry665b8d72014-01-07 10:11:39 -08002292 _mesa_shader_stage_to_string(i),
Eric Anholt877a8972012-06-25 12:47:01 -07002293 blocks[i],
Paul Berrybce8bc02014-01-08 10:17:01 -08002294 max_uniform_blocks);
Eric Anholt877a8972012-06-25 12:47:01 -07002295 break;
2296 }
2297 }
2298 }
2299 }
Ian Romanick92f81592011-11-08 12:37:19 -08002300}
Paul Berry871ddb92011-11-05 11:17:32 -07002301
Francisco Jereze51158f2013-11-22 15:53:26 -08002302/**
2303 * Validate shader image resources.
2304 */
2305static void
2306check_image_resources(struct gl_context *ctx, struct gl_shader_program *prog)
2307{
2308 unsigned total_image_units = 0;
2309 unsigned fragment_outputs = 0;
2310
2311 if (!ctx->Extensions.ARB_shader_image_load_store)
2312 return;
2313
2314 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
2315 struct gl_shader *sh = prog->_LinkedShaders[i];
2316
2317 if (sh) {
2318 if (sh->NumImages > ctx->Const.Program[i].MaxImageUniforms)
2319 linker_error(prog, "Too many %s shader image uniforms",
2320 _mesa_shader_stage_to_string(i));
2321
2322 total_image_units += sh->NumImages;
2323
2324 if (i == MESA_SHADER_FRAGMENT) {
Matt Turner4d784462014-06-24 21:34:05 -07002325 foreach_in_list(ir_instruction, node, sh->ir) {
2326 ir_variable *var = node->as_variable();
Francisco Jereze51158f2013-11-22 15:53:26 -08002327 if (var && var->data.mode == ir_var_shader_out)
2328 fragment_outputs += var->type->count_attribute_slots();
2329 }
2330 }
2331 }
2332 }
2333
2334 if (total_image_units > ctx->Const.MaxCombinedImageUniforms)
2335 linker_error(prog, "Too many combined image uniforms");
2336
2337 if (total_image_units + fragment_outputs >
2338 ctx->Const.MaxCombinedImageUnitsAndFragmentOutputs)
2339 linker_error(prog, "Too many combined image uniforms and fragment outputs");
2340}
2341
Tapani Pällieca9d162014-04-08 08:45:36 +03002342
2343/**
2344 * Initializes explicit location slots to INACTIVE_UNIFORM_EXPLICIT_LOCATION
2345 * for a variable, checks for overlaps between other uniforms using explicit
2346 * locations.
2347 */
2348static bool
2349reserve_explicit_locations(struct gl_shader_program *prog,
2350 string_to_uint_map *map, ir_variable *var)
2351{
2352 unsigned slots = var->type->uniform_locations();
2353 unsigned max_loc = var->data.location + slots - 1;
2354
2355 /* Resize remap table if locations do not fit in the current one. */
2356 if (max_loc + 1 > prog->NumUniformRemapTable) {
2357 prog->UniformRemapTable =
2358 reralloc(prog, prog->UniformRemapTable,
2359 gl_uniform_storage *,
2360 max_loc + 1);
2361
2362 if (!prog->UniformRemapTable) {
2363 linker_error(prog, "Out of memory during linking.");
2364 return false;
2365 }
2366
2367 /* Initialize allocated space. */
2368 for (unsigned i = prog->NumUniformRemapTable; i < max_loc + 1; i++)
2369 prog->UniformRemapTable[i] = NULL;
2370
2371 prog->NumUniformRemapTable = max_loc + 1;
2372 }
2373
2374 for (unsigned i = 0; i < slots; i++) {
2375 unsigned loc = var->data.location + i;
2376
2377 /* Check if location is already used. */
2378 if (prog->UniformRemapTable[loc] == INACTIVE_UNIFORM_EXPLICIT_LOCATION) {
2379
2380 /* Possibly same uniform from a different stage, this is ok. */
2381 unsigned hash_loc;
2382 if (map->get(hash_loc, var->name) && hash_loc == loc - i)
2383 continue;
2384
2385 /* ARB_explicit_uniform_location specification states:
2386 *
2387 * "No two default-block uniform variables in the program can have
2388 * the same location, even if they are unused, otherwise a compiler
2389 * or linker error will be generated."
2390 */
2391 linker_error(prog,
2392 "location qualifier for uniform %s overlaps"
2393 "previously used location",
2394 var->name);
2395 return false;
2396 }
2397
2398 /* Initialize location as inactive before optimization
2399 * rounds and location assignment.
2400 */
2401 prog->UniformRemapTable[loc] = INACTIVE_UNIFORM_EXPLICIT_LOCATION;
2402 }
2403
2404 /* Note, base location used for arrays. */
2405 map->put(var->data.location, var->name);
2406
2407 return true;
2408}
2409
2410/**
2411 * Check and reserve all explicit uniform locations, called before
2412 * any optimizations happen to handle also inactive uniforms and
2413 * inactive array elements that may get trimmed away.
2414 */
2415static void
2416check_explicit_uniform_locations(struct gl_context *ctx,
2417 struct gl_shader_program *prog)
2418{
2419 if (!ctx->Extensions.ARB_explicit_uniform_location)
2420 return;
2421
2422 /* This map is used to detect if overlapping explicit locations
2423 * occur with the same uniform (from different stage) or a different one.
2424 */
2425 string_to_uint_map *uniform_map = new string_to_uint_map;
2426
2427 if (!uniform_map) {
2428 linker_error(prog, "Out of memory during linking.");
2429 return;
2430 }
2431
2432 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
2433 struct gl_shader *sh = prog->_LinkedShaders[i];
2434
2435 if (!sh)
2436 continue;
2437
Matt Turner4d784462014-06-24 21:34:05 -07002438 foreach_in_list(ir_instruction, node, sh->ir) {
2439 ir_variable *var = node->as_variable();
Tapani Pällieca9d162014-04-08 08:45:36 +03002440 if ((var && var->data.mode == ir_var_uniform) &&
2441 var->data.explicit_location) {
Dave Airlie2d5d1f52014-09-02 09:54:36 +10002442 if (!reserve_explicit_locations(prog, uniform_map, var)) {
2443 delete uniform_map;
Tapani Pällieca9d162014-04-08 08:45:36 +03002444 return;
Dave Airlie2d5d1f52014-09-02 09:54:36 +10002445 }
Tapani Pällieca9d162014-04-08 08:45:36 +03002446 }
2447 }
2448 }
2449
2450 delete uniform_map;
2451}
2452
Ian Romanick0e59b262010-06-23 11:23:01 -07002453void
Kristian Høgsbergf9995b32010-10-12 12:26:10 -04002454link_shaders(struct gl_context *ctx, struct gl_shader_program *prog)
Ian Romanick832dfa52010-06-17 15:04:20 -07002455{
Paul Berry871ddb92011-11-05 11:17:32 -07002456 tfeedback_decl *tfeedback_decls = NULL;
2457 unsigned num_tfeedback_decls = prog->TransformFeedback.NumVarying;
2458
Kenneth Graunked3073f52011-01-21 14:32:31 -08002459 void *mem_ctx = ralloc_context(NULL); // temporary linker context
Kenneth Graunke2da02e72010-11-17 11:03:57 -08002460
Paul Berryb95d2372013-07-27 11:08:31 -07002461 prog->LinkStatus = true; /* All error paths will set this to false */
Ian Romanick832dfa52010-06-17 15:04:20 -07002462 prog->Validated = false;
2463 prog->_Used = false;
2464
Eric Anholtf609cf72012-04-27 13:52:56 -07002465 ralloc_free(prog->InfoLog);
Kenneth Graunked3073f52011-01-21 14:32:31 -08002466 prog->InfoLog = ralloc_strdup(NULL, "");
Ian Romanickf36460e2010-06-23 12:07:22 -07002467
Eric Anholtf609cf72012-04-27 13:52:56 -07002468 ralloc_free(prog->UniformBlocks);
2469 prog->UniformBlocks = NULL;
2470 prog->NumUniformBlocks = 0;
Paul Berry665b8d72014-01-07 10:11:39 -08002471 for (int i = 0; i < MESA_SHADER_STAGES; i++) {
Eric Anholtf609cf72012-04-27 13:52:56 -07002472 ralloc_free(prog->UniformBlockStageIndex[i]);
2473 prog->UniformBlockStageIndex[i] = NULL;
2474 }
2475
Francisco Jerez5c114932013-09-11 12:14:46 -07002476 ralloc_free(prog->AtomicBuffers);
2477 prog->AtomicBuffers = NULL;
2478 prog->NumAtomicBuffers = 0;
Anuj Phogat9bcb0a82014-02-10 14:12:40 -08002479 prog->ARB_fragment_coord_conventions_enable = false;
Francisco Jerez5c114932013-09-11 12:14:46 -07002480
Ian Romanick832dfa52010-06-17 15:04:20 -07002481 /* Separate the shaders into groups based on their type.
2482 */
Paul Berrycd18ba12014-01-07 08:56:57 -08002483 struct gl_shader **shader_list[MESA_SHADER_STAGES];
2484 unsigned num_shaders[MESA_SHADER_STAGES];
Ian Romanick832dfa52010-06-17 15:04:20 -07002485
Paul Berrycd18ba12014-01-07 08:56:57 -08002486 for (int i = 0; i < MESA_SHADER_STAGES; i++) {
2487 shader_list[i] = (struct gl_shader **)
2488 calloc(prog->NumShaders, sizeof(struct gl_shader *));
2489 num_shaders[i] = 0;
2490 }
Ian Romanick832dfa52010-06-17 15:04:20 -07002491
Ian Romanick25f51d32010-07-16 15:51:50 -07002492 unsigned min_version = UINT_MAX;
2493 unsigned max_version = 0;
Paul Berrya9f34dc2012-08-02 17:49:44 -07002494 const bool is_es_prog =
2495 (prog->NumShaders > 0 && prog->Shaders[0]->IsES) ? true : false;
Ian Romanick832dfa52010-06-17 15:04:20 -07002496 for (unsigned i = 0; i < prog->NumShaders; i++) {
Ian Romanick25f51d32010-07-16 15:51:50 -07002497 min_version = MIN2(min_version, prog->Shaders[i]->Version);
2498 max_version = MAX2(max_version, prog->Shaders[i]->Version);
2499
Paul Berrya9f34dc2012-08-02 17:49:44 -07002500 if (prog->Shaders[i]->IsES != is_es_prog) {
2501 linker_error(prog, "all shaders must use same shading "
2502 "language version\n");
2503 goto done;
2504 }
2505
Anuj Phogat9bcb0a82014-02-10 14:12:40 -08002506 prog->ARB_fragment_coord_conventions_enable |=
2507 prog->Shaders[i]->ARB_fragment_coord_conventions_enable;
2508
Paul Berrycd18ba12014-01-07 08:56:57 -08002509 gl_shader_stage shader_type = prog->Shaders[i]->Stage;
2510 shader_list[shader_type][num_shaders[shader_type]] = prog->Shaders[i];
2511 num_shaders[shader_type]++;
Ian Romanick832dfa52010-06-17 15:04:20 -07002512 }
2513
Paul Berry672fab02013-10-13 18:01:11 -07002514 /* In desktop GLSL, different shader versions may be linked together. In
2515 * GLSL ES, all shader versions must be the same.
Ian Romanick25f51d32010-07-16 15:51:50 -07002516 */
Paul Berry672fab02013-10-13 18:01:11 -07002517 if (is_es_prog && min_version != max_version) {
Ian Romanick586e7412011-07-28 14:04:09 -07002518 linker_error(prog, "all shaders must use same shading "
2519 "language version\n");
Ian Romanick25f51d32010-07-16 15:51:50 -07002520 goto done;
2521 }
2522
2523 prog->Version = max_version;
Paul Berry91c92bb2012-08-02 17:50:43 -07002524 prog->IsES = is_es_prog;
Ian Romanick25f51d32010-07-16 15:51:50 -07002525
Fabian Bielerbd85ba02013-05-24 23:26:54 +02002526 /* Geometry shaders have to be linked with vertex shaders.
2527 */
Paul Berrycd18ba12014-01-07 08:56:57 -08002528 if (num_shaders[MESA_SHADER_GEOMETRY] > 0 &&
Ian Romanickc557eb72014-01-23 18:26:29 -08002529 num_shaders[MESA_SHADER_VERTEX] == 0 &&
2530 !prog->SeparateShader) {
Fabian Bielerbd85ba02013-05-24 23:26:54 +02002531 linker_error(prog, "Geometry shader must be linked with "
2532 "vertex shader\n");
2533 goto done;
2534 }
2535
Paul Berry1fe274b2014-01-08 11:40:23 -08002536 /* Compute shaders have additional restrictions. */
2537 if (num_shaders[MESA_SHADER_COMPUTE] > 0 &&
2538 num_shaders[MESA_SHADER_COMPUTE] != prog->NumShaders) {
2539 linker_error(prog, "Compute shaders may not be linked with any other "
2540 "type of shader\n");
2541 }
2542
Paul Berry665b8d72014-01-07 10:11:39 -08002543 for (unsigned int i = 0; i < MESA_SHADER_STAGES; i++) {
Ian Romanick3322fba2010-10-14 13:28:42 -07002544 if (prog->_LinkedShaders[i] != NULL)
2545 ctx->Driver.DeleteShader(ctx, prog->_LinkedShaders[i]);
2546
2547 prog->_LinkedShaders[i] = NULL;
Eric Anholt5d0f4302010-08-18 12:02:35 -07002548 }
2549
Ian Romanickcd6764e2010-07-16 16:00:07 -07002550 /* Link all shaders for a particular stage and validate the result.
2551 */
Paul Berrycd18ba12014-01-07 08:56:57 -08002552 for (int stage = 0; stage < MESA_SHADER_STAGES; stage++) {
2553 if (num_shaders[stage] > 0) {
2554 gl_shader *const sh =
2555 link_intrastage_shaders(mem_ctx, ctx, prog, shader_list[stage],
2556 num_shaders[stage]);
Ian Romanick3fb87872010-07-09 14:09:34 -07002557
Paul Berrycd18ba12014-01-07 08:56:57 -08002558 if (!prog->LinkStatus)
2559 goto done;
Ian Romanick3fb87872010-07-09 14:09:34 -07002560
Paul Berrycd18ba12014-01-07 08:56:57 -08002561 switch (stage) {
2562 case MESA_SHADER_VERTEX:
2563 validate_vertex_shader_executable(prog, sh);
2564 break;
2565 case MESA_SHADER_GEOMETRY:
2566 validate_geometry_shader_executable(prog, sh);
2567 break;
2568 case MESA_SHADER_FRAGMENT:
2569 validate_fragment_shader_executable(prog, sh);
2570 break;
2571 }
2572 if (!prog->LinkStatus)
2573 goto done;
Ian Romanick3fb87872010-07-09 14:09:34 -07002574
Paul Berrycd18ba12014-01-07 08:56:57 -08002575 _mesa_reference_shader(ctx, &prog->_LinkedShaders[stage], sh);
2576 }
Ian Romanickcc22c5a2010-06-18 17:13:42 -07002577 }
2578
Paul Berrycd18ba12014-01-07 08:56:57 -08002579 if (num_shaders[MESA_SHADER_GEOMETRY] > 0)
Paul Berry44b7ebe2013-10-23 12:55:24 -07002580 prog->LastClipDistanceArraySize = prog->Geom.ClipDistanceArraySize;
Paul Berrycd18ba12014-01-07 08:56:57 -08002581 else if (num_shaders[MESA_SHADER_VERTEX] > 0)
2582 prog->LastClipDistanceArraySize = prog->Vert.ClipDistanceArraySize;
2583 else
2584 prog->LastClipDistanceArraySize = 0; /* Not used */
Bryan Cain25480922013-02-15 09:46:50 -06002585
Ian Romanick3ed850e2010-06-23 12:18:21 -07002586 /* Here begins the inter-stage linking phase. Some initial validation is
2587 * performed, then locations are assigned for uniforms, attributes, and
2588 * varyings.
2589 */
Paul Berryb95d2372013-07-27 11:08:31 -07002590 cross_validate_uniforms(prog);
2591 if (!prog->LinkStatus)
2592 goto done;
Ian Romanick3322fba2010-10-14 13:28:42 -07002593
Paul Berryb95d2372013-07-27 11:08:31 -07002594 unsigned prev;
Ian Romanick3322fba2010-10-14 13:28:42 -07002595
Paul Berry28e526d2014-01-06 19:47:25 -08002596 for (prev = 0; prev <= MESA_SHADER_FRAGMENT; prev++) {
Paul Berryb95d2372013-07-27 11:08:31 -07002597 if (prog->_LinkedShaders[prev] != NULL)
2598 break;
2599 }
Ian Romanick3322fba2010-10-14 13:28:42 -07002600
Tapani Pällieca9d162014-04-08 08:45:36 +03002601 check_explicit_uniform_locations(ctx, prog);
2602 if (!prog->LinkStatus)
2603 goto done;
2604
Paul Berryb95d2372013-07-27 11:08:31 -07002605 /* Validate the inputs of each stage with the output of the preceding
2606 * stage.
2607 */
Paul Berry28e526d2014-01-06 19:47:25 -08002608 for (unsigned i = prev + 1; i <= MESA_SHADER_FRAGMENT; i++) {
Paul Berryb95d2372013-07-27 11:08:31 -07002609 if (prog->_LinkedShaders[i] == NULL)
2610 continue;
Kenneth Graunke3ddfccb2013-05-20 23:46:16 -07002611
Paul Berry544e3122013-11-15 14:23:45 -08002612 validate_interstage_inout_blocks(prog, prog->_LinkedShaders[prev],
2613 prog->_LinkedShaders[i]);
Paul Berryb95d2372013-07-27 11:08:31 -07002614 if (!prog->LinkStatus)
2615 goto done;
Ian Romanick3322fba2010-10-14 13:28:42 -07002616
Paul Berryb95d2372013-07-27 11:08:31 -07002617 cross_validate_outputs_to_inputs(prog,
2618 prog->_LinkedShaders[prev],
2619 prog->_LinkedShaders[i]);
2620 if (!prog->LinkStatus)
2621 goto done;
Ian Romanick37101922010-06-18 19:02:10 -07002622
Paul Berryb95d2372013-07-27 11:08:31 -07002623 prev = i;
Ian Romanick37101922010-06-18 19:02:10 -07002624 }
Ian Romanick832dfa52010-06-17 15:04:20 -07002625
Paul Berry544e3122013-11-15 14:23:45 -08002626 /* Cross-validate uniform blocks between shader stages */
2627 validate_interstage_uniform_blocks(prog, prog->_LinkedShaders,
Paul Berry665b8d72014-01-07 10:11:39 -08002628 MESA_SHADER_STAGES);
Paul Berry544e3122013-11-15 14:23:45 -08002629 if (!prog->LinkStatus)
2630 goto done;
Jordan Justen5ebf5472013-03-10 03:20:03 -07002631
Paul Berry665b8d72014-01-07 10:11:39 -08002632 for (unsigned int i = 0; i < MESA_SHADER_STAGES; i++) {
Jordan Justen5ebf5472013-03-10 03:20:03 -07002633 if (prog->_LinkedShaders[i] != NULL)
2634 lower_named_interface_blocks(mem_ctx, prog->_LinkedShaders[i]);
2635 }
2636
Eric Anholt3de13952012-05-04 13:08:46 -07002637 /* Implement the GLSL 1.30+ rule for discard vs infinite loops Do
2638 * it before optimization because we want most of the checks to get
2639 * dropped thanks to constant propagation.
Paul Berry15ba2a52012-08-02 17:51:02 -07002640 *
2641 * This rule also applies to GLSL ES 3.00.
Eric Anholt3de13952012-05-04 13:08:46 -07002642 */
Paul Berry15ba2a52012-08-02 17:51:02 -07002643 if (max_version >= (is_es_prog ? 300 : 130)) {
Eric Anholt3de13952012-05-04 13:08:46 -07002644 struct gl_shader *sh = prog->_LinkedShaders[MESA_SHADER_FRAGMENT];
2645 if (sh) {
2646 lower_discard_flow(sh->ir);
2647 }
2648 }
2649
Eric Anholtf609cf72012-04-27 13:52:56 -07002650 if (!interstage_cross_validate_uniform_blocks(prog))
2651 goto done;
2652
Eric Anholt2f4fe152010-08-10 13:06:49 -07002653 /* Do common optimization before assigning storage for attributes,
2654 * uniforms, and varyings. Later optimization could possibly make
2655 * some of that unused.
2656 */
Paul Berry665b8d72014-01-07 10:11:39 -08002657 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Ian Romanick3322fba2010-10-14 13:28:42 -07002658 if (prog->_LinkedShaders[i] == NULL)
2659 continue;
2660
Ian Romanick02c5ae12011-07-11 10:46:01 -07002661 detect_recursion_linked(prog, prog->_LinkedShaders[i]->ir);
2662 if (!prog->LinkStatus)
2663 goto done;
2664
Marek Olšák002211f2014-08-03 04:31:56 +02002665 if (ctx->Const.ShaderCompilerOptions[i].LowerClipDistance) {
Paul Berry18392442012-12-04 11:11:02 -08002666 lower_clip_distance(prog->_LinkedShaders[i]);
2667 }
Paul Berryc06e3252011-08-11 20:58:21 -07002668
Kenneth Graunke169c6452014-04-06 23:25:00 -07002669 while (do_common_optimization(prog->_LinkedShaders[i]->ir, true, false,
Marek Olšák002211f2014-08-03 04:31:56 +02002670 &ctx->Const.ShaderCompilerOptions[i],
Kenneth Graunke169c6452014-04-06 23:25:00 -07002671 ctx->Const.NativeIntegers))
Eric Anholt2f4fe152010-08-10 13:06:49 -07002672 ;
Ian Romanicka7ba9a72010-07-20 13:36:32 -07002673 }
Ian Romanick13e10e42010-06-21 12:03:24 -07002674
Iago Toral Quiroga75896832014-06-16 16:09:53 +02002675 /* Check and validate stream emissions in geometry shaders */
2676 validate_geometry_shader_emissions(ctx, prog);
2677
Paul Berry50895d42012-12-05 07:17:07 -08002678 /* Mark all generic shader inputs and outputs as unpaired. */
Ian Romanick6bdc1d92014-02-11 16:37:56 -08002679 for (unsigned i = MESA_SHADER_VERTEX; i <= MESA_SHADER_FRAGMENT; i++) {
2680 if (prog->_LinkedShaders[i] != NULL) {
2681 link_invalidate_variable_locations(prog->_LinkedShaders[i]->ir);
2682 }
Paul Berry50895d42012-12-05 07:17:07 -08002683 }
2684
Ian Romanickd32d4f72011-06-27 17:59:58 -07002685 /* FINISHME: The value of the max_attribute_index parameter is
2686 * FINISHME: implementation dependent based on the value of
2687 * FINISHME: GL_MAX_VERTEX_ATTRIBS. GL_MAX_VERTEX_ATTRIBS must be
2688 * FINISHME: at least 16, so hardcode 16 for now.
2689 */
2690 if (!assign_attribute_or_color_locations(prog, MESA_SHADER_VERTEX, 16)) {
Ian Romanickd32d4f72011-06-27 17:59:58 -07002691 goto done;
2692 }
2693
Dave Airlie1256a5d2012-03-24 13:33:41 +00002694 if (!assign_attribute_or_color_locations(prog, MESA_SHADER_FRAGMENT, MAX2(ctx->Const.MaxDrawBuffers, ctx->Const.MaxDualSourceDrawBuffers))) {
Ian Romanickd32d4f72011-06-27 17:59:58 -07002695 goto done;
Ian Romanick40e114b2010-08-17 14:55:50 -07002696 }
2697
Marek Olšák284d9542013-06-12 02:18:09 +02002698 unsigned first;
Paul Berry28e526d2014-01-06 19:47:25 -08002699 for (first = 0; first <= MESA_SHADER_FRAGMENT; first++) {
Marek Olšák284d9542013-06-12 02:18:09 +02002700 if (prog->_LinkedShaders[first] != NULL)
Ian Romanick3322fba2010-10-14 13:28:42 -07002701 break;
2702 }
2703
Paul Berry871ddb92011-11-05 11:17:32 -07002704 if (num_tfeedback_decls != 0) {
2705 /* From GL_EXT_transform_feedback:
2706 * A program will fail to link if:
2707 *
2708 * * the <count> specified by TransformFeedbackVaryingsEXT is
2709 * non-zero, but the program object has no vertex or geometry
2710 * shader;
2711 */
Bryan Cain25480922013-02-15 09:46:50 -06002712 if (first == MESA_SHADER_FRAGMENT) {
Paul Berry871ddb92011-11-05 11:17:32 -07002713 linker_error(prog, "Transform feedback varyings specified, but "
2714 "no vertex or geometry shader is present.");
2715 goto done;
2716 }
2717
2718 tfeedback_decls = ralloc_array(mem_ctx, tfeedback_decl,
2719 prog->TransformFeedback.NumVarying);
Paul Berry456279b2011-12-26 19:39:25 -08002720 if (!parse_tfeedback_decls(ctx, prog, mem_ctx, num_tfeedback_decls,
Paul Berry871ddb92011-11-05 11:17:32 -07002721 prog->TransformFeedback.VaryingNames,
2722 tfeedback_decls))
2723 goto done;
2724 }
2725
Marek Olšák284d9542013-06-12 02:18:09 +02002726 /* Linking the stages in the opposite order (from fragment to vertex)
2727 * ensures that inter-shader outputs written to in an earlier stage are
2728 * eliminated if they are (transitively) not used in a later stage.
2729 */
2730 int last, next;
Paul Berry28e526d2014-01-06 19:47:25 -08002731 for (last = MESA_SHADER_FRAGMENT; last >= 0; last--) {
Marek Olšák284d9542013-06-12 02:18:09 +02002732 if (prog->_LinkedShaders[last] != NULL)
2733 break;
Ian Romanick3322fba2010-10-14 13:28:42 -07002734 }
Ian Romanick13e10e42010-06-21 12:03:24 -07002735
Marek Olšák284d9542013-06-12 02:18:09 +02002736 if (last >= 0 && last < MESA_SHADER_FRAGMENT) {
2737 gl_shader *const sh = prog->_LinkedShaders[last];
2738
Ian Romanick1ff5a2b2014-02-14 12:10:27 -08002739 if (num_tfeedback_decls != 0 || prog->SeparateShader) {
Marek Olšák284d9542013-06-12 02:18:09 +02002740 /* There was no fragment shader, but we still have to assign varying
2741 * locations for use by transform feedback.
2742 */
2743 if (!assign_varying_locations(ctx, mem_ctx, prog,
2744 sh, NULL,
Paul Berry3b0cf702013-04-10 06:48:42 -07002745 num_tfeedback_decls, tfeedback_decls,
2746 0))
Marek Olšák284d9542013-06-12 02:18:09 +02002747 goto done;
2748 }
2749
Marek Olšákd13003f2013-08-09 22:34:45 +02002750 do_dead_builtin_varyings(ctx, sh, NULL,
Marek Olšákb3d8b4c2013-06-12 13:23:48 +02002751 num_tfeedback_decls, tfeedback_decls);
2752
Ian Romanick1ff5a2b2014-02-14 12:10:27 -08002753 if (!prog->SeparateShader)
2754 demote_shader_inputs_and_outputs(sh, ir_var_shader_out);
Marek Olšák284d9542013-06-12 02:18:09 +02002755
2756 /* Eliminate code that is now dead due to unused outputs being demoted.
Paul Berry871ddb92011-11-05 11:17:32 -07002757 */
Marek Olšák284d9542013-06-12 02:18:09 +02002758 while (do_dead_code(sh->ir, false))
2759 ;
2760 }
2761 else if (first == MESA_SHADER_FRAGMENT) {
Marek Olšákb3d8b4c2013-06-12 13:23:48 +02002762 /* If the program only contains a fragment shader...
Marek Olšák284d9542013-06-12 02:18:09 +02002763 */
2764 gl_shader *const sh = prog->_LinkedShaders[first];
2765
Marek Olšákd13003f2013-08-09 22:34:45 +02002766 do_dead_builtin_varyings(ctx, NULL, sh,
Marek Olšákb3d8b4c2013-06-12 13:23:48 +02002767 num_tfeedback_decls, tfeedback_decls);
2768
Ian Romanick1ff5a2b2014-02-14 12:10:27 -08002769 if (prog->SeparateShader) {
2770 if (!assign_varying_locations(ctx, mem_ctx, prog,
2771 NULL /* producer */,
2772 sh /* consumer */,
2773 0 /* num_tfeedback_decls */,
2774 NULL /* tfeedback_decls */,
2775 0 /* gs_input_vertices */))
2776 goto done;
2777 } else
2778 demote_shader_inputs_and_outputs(sh, ir_var_shader_in);
Marek Olšák284d9542013-06-12 02:18:09 +02002779
2780 while (do_dead_code(sh->ir, false))
2781 ;
2782 }
2783
2784 next = last;
2785 for (int i = next - 1; i >= 0; i--) {
2786 if (prog->_LinkedShaders[i] == NULL)
2787 continue;
2788
2789 gl_shader *const sh_i = prog->_LinkedShaders[i];
2790 gl_shader *const sh_next = prog->_LinkedShaders[next];
Paul Berry3b0cf702013-04-10 06:48:42 -07002791 unsigned gs_input_vertices =
2792 next == MESA_SHADER_GEOMETRY ? prog->Geom.VerticesIn : 0;
Marek Olšák284d9542013-06-12 02:18:09 +02002793
2794 if (!assign_varying_locations(ctx, mem_ctx, prog, sh_i, sh_next,
2795 next == MESA_SHADER_FRAGMENT ? num_tfeedback_decls : 0,
Paul Berry3b0cf702013-04-10 06:48:42 -07002796 tfeedback_decls, gs_input_vertices))
Paul Berry871ddb92011-11-05 11:17:32 -07002797 goto done;
Marek Olšák284d9542013-06-12 02:18:09 +02002798
Marek Olšákd13003f2013-08-09 22:34:45 +02002799 do_dead_builtin_varyings(ctx, sh_i, sh_next,
Marek Olšákb3d8b4c2013-06-12 13:23:48 +02002800 next == MESA_SHADER_FRAGMENT ? num_tfeedback_decls : 0,
2801 tfeedback_decls);
2802
Marek Olšák284d9542013-06-12 02:18:09 +02002803 demote_shader_inputs_and_outputs(sh_i, ir_var_shader_out);
2804 demote_shader_inputs_and_outputs(sh_next, ir_var_shader_in);
2805
2806 /* Eliminate code that is now dead due to unused outputs being demoted.
2807 */
2808 while (do_dead_code(sh_i->ir, false))
2809 ;
2810 while (do_dead_code(sh_next->ir, false))
2811 ;
2812
Marek Olšák3c555822013-06-13 03:17:22 +02002813 /* This must be done after all dead varyings are eliminated. */
Ian Romanick42305fb2013-09-10 12:00:34 -05002814 if (!check_against_output_limit(ctx, prog, sh_i))
2815 goto done;
2816 if (!check_against_input_limit(ctx, prog, sh_next))
Marek Olšák3c555822013-06-13 03:17:22 +02002817 goto done;
2818
Marek Olšák284d9542013-06-12 02:18:09 +02002819 next = i;
Paul Berry871ddb92011-11-05 11:17:32 -07002820 }
2821
2822 if (!store_tfeedback_info(ctx, prog, num_tfeedback_decls, tfeedback_decls))
2823 goto done;
2824
Ian Romanick960d7222011-10-21 11:21:02 -07002825 update_array_sizes(prog);
Matt Turner9e2e7c72014-08-08 19:46:05 -07002826 link_assign_uniform_locations(prog, ctx->Const.UniformBooleanTrue);
Francisco Jerez5c114932013-09-11 12:14:46 -07002827 link_assign_atomic_counter_resources(ctx, prog);
Marek Olšákec174a42011-11-18 15:00:10 +01002828 store_fragdepth_layout(prog);
Ian Romanick960d7222011-10-21 11:21:02 -07002829
Paul Berryb95d2372013-07-27 11:08:31 -07002830 check_resources(ctx, prog);
Francisco Jereze51158f2013-11-22 15:53:26 -08002831 check_image_resources(ctx, prog);
Francisco Jerez5c114932013-09-11 12:14:46 -07002832 link_check_atomic_counter_resources(ctx, prog);
2833
Paul Berryb95d2372013-07-27 11:08:31 -07002834 if (!prog->LinkStatus)
Ian Romanick92f81592011-11-08 12:37:19 -08002835 goto done;
2836
Ian Romanickce9171f2011-02-03 17:10:14 -08002837 /* OpenGL ES requires that a vertex shader and a fragment shader both be
Anuj Phogat03597cf2013-12-19 14:17:19 -08002838 * present in a linked program. GL_ARB_ES2_compatibility doesn't say
2839 * anything about shader linking when one of the shaders (vertex or
2840 * fragment shader) is absent. So, the extension shouldn't change the
2841 * behavior specified in GLSL specification.
Ian Romanickce9171f2011-02-03 17:10:14 -08002842 */
Ian Romanickf64bfb22014-03-27 10:29:30 -07002843 if (!prog->SeparateShader && ctx->API == API_OPENGLES2) {
Ian Romanickce9171f2011-02-03 17:10:14 -08002844 if (prog->_LinkedShaders[MESA_SHADER_VERTEX] == NULL) {
Ian Romanick586e7412011-07-28 14:04:09 -07002845 linker_error(prog, "program lacks a vertex shader\n");
Ian Romanickce9171f2011-02-03 17:10:14 -08002846 } else if (prog->_LinkedShaders[MESA_SHADER_FRAGMENT] == NULL) {
Ian Romanick586e7412011-07-28 14:04:09 -07002847 linker_error(prog, "program lacks a fragment shader\n");
Ian Romanickce9171f2011-02-03 17:10:14 -08002848 }
2849 }
2850
Ian Romanick13e10e42010-06-21 12:03:24 -07002851 /* FINISHME: Assign fragment shader output locations. */
2852
Ian Romanick832dfa52010-06-17 15:04:20 -07002853done:
Paul Berry665b8d72014-01-07 10:11:39 -08002854 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Paul Berrycd18ba12014-01-07 08:56:57 -08002855 free(shader_list[i]);
Kenneth Graunke2da02e72010-11-17 11:03:57 -08002856 if (prog->_LinkedShaders[i] == NULL)
2857 continue;
2858
Paul Berryd7fa9eb2013-11-22 12:37:22 -08002859 /* Do a final validation step to make sure that the IR wasn't
2860 * invalidated by any modifications performed after intrastage linking.
2861 */
2862 validate_ir_tree(prog->_LinkedShaders[i]->ir);
2863
Kenneth Graunke2da02e72010-11-17 11:03:57 -08002864 /* Retain any live IR, but trash the rest. */
2865 reparent_ir(prog->_LinkedShaders[i]->ir, prog->_LinkedShaders[i]->ir);
Ian Romanick7bbcc0b2011-09-30 14:21:10 -07002866
2867 /* The symbol table in the linked shaders may contain references to
2868 * variables that were removed (e.g., unused uniforms). Since it may
2869 * contain junk, there is no possible valid use. Delete it and set the
2870 * pointer to NULL.
2871 */
2872 delete prog->_LinkedShaders[i]->symbols;
2873 prog->_LinkedShaders[i]->symbols = NULL;
Kenneth Graunke2da02e72010-11-17 11:03:57 -08002874 }
2875
Kenneth Graunked3073f52011-01-21 14:32:31 -08002876 ralloc_free(mem_ctx);
Ian Romanick832dfa52010-06-17 15:04:20 -07002877}