blob: 590f364d6c265fed3b026447d962e8e70fd8d1ed [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
Brian Paulddf4b2e2015-02-24 16:56:54 -070067#include <ctype.h>
Chia-I Wubfd7c9a2010-08-23 17:51:42 +080068#include "main/core.h"
Ian Romanick832dfa52010-06-17 15:04:20 -070069#include "glsl_symbol_table.h"
Eric Anholtfaf3dba2013-06-12 16:57:11 -070070#include "glsl_parser_extras.h"
Ian Romanick832dfa52010-06-17 15:04:20 -070071#include "ir.h"
72#include "program.h"
Aras Pranckevicius31747152010-07-29 12:40:49 +030073#include "program/hash_table.h"
Ian Romanick8fe8a812010-07-13 17:36:13 -070074#include "linker.h"
Paul Berry4b11b572012-12-17 14:20:35 -080075#include "link_varyings.h"
Ian Romanicka7ba9a72010-07-20 13:36:32 -070076#include "ir_optimization.h"
Bryan Cain25480922013-02-15 09:46:50 -060077#include "ir_rvalue_visitor.h"
Tapani Pällieca9d162014-04-08 08:45:36 +030078#include "ir_uniform.h"
Ian Romanick832dfa52010-06-17 15:04:20 -070079
Ian Romanick3322fba2010-10-14 13:28:42 -070080#include "main/shaderobj.h"
Eric Anholt6065a872013-06-12 18:12:40 -070081#include "main/enums.h"
Brian Paul241c5992014-12-15 16:41:58 -070082
Ian Romanick3322fba2010-10-14 13:28:42 -070083
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 Kondapallydbc2d812014-09-10 20:20:23 -0700565 if (prog->Version < (prog->IsES ? 300 : 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()) {
Kalyan Kondapallydbc2d812014-09-10 20:20:23 -0700569 if (prog->IsES) {
570 linker_warning(prog,
571 "vertex shader does not write to `gl_Position'."
572 "It's value is undefined. \n");
573 } else {
574 linker_error(prog,
575 "vertex shader does not write to `gl_Position'. \n");
576 }
Paul Berryb95d2372013-07-27 11:08:31 -0700577 return;
Eric Anholtf1c1c9e2012-03-19 22:43:27 -0700578 }
Ian Romanick832dfa52010-06-17 15:04:20 -0700579 }
580
Paul Berryb30e25f2013-12-17 09:49:43 -0800581 analyze_clip_usage(prog, shader, &prog->Vert.UsesClipDistance,
Paul Berry44e07de2013-06-11 14:11:05 -0700582 &prog->Vert.ClipDistanceArraySize);
Ian Romanick832dfa52010-06-17 15:04:20 -0700583}
584
585
Ian Romanickc93b8f12010-06-17 15:20:22 -0700586/**
587 * Verify that a fragment shader executable meets all semantic requirements
588 *
589 * \param shader Fragment shader executable to be verified
590 */
Paul Berryb95d2372013-07-27 11:08:31 -0700591void
Eric Anholt849e1812010-06-30 11:49:17 -0700592validate_fragment_shader_executable(struct gl_shader_program *prog,
Eric Anholt16b68b12010-06-30 11:05:43 -0700593 struct gl_shader *shader)
Ian Romanick832dfa52010-06-17 15:04:20 -0700594{
595 if (shader == NULL)
Paul Berryb95d2372013-07-27 11:08:31 -0700596 return;
Ian Romanick832dfa52010-06-17 15:04:20 -0700597
Ian Romanick832dfa52010-06-17 15:04:20 -0700598 find_assignment_visitor frag_color("gl_FragColor");
599 find_assignment_visitor frag_data("gl_FragData");
600
Eric Anholt16b68b12010-06-30 11:05:43 -0700601 frag_color.run(shader->ir);
602 frag_data.run(shader->ir);
Ian Romanick832dfa52010-06-17 15:04:20 -0700603
Ian Romanick832dfa52010-06-17 15:04:20 -0700604 if (frag_color.variable_found() && frag_data.variable_found()) {
Ian Romanick586e7412011-07-28 14:04:09 -0700605 linker_error(prog, "fragment shader writes to both "
606 "`gl_FragColor' and `gl_FragData'\n");
Ian Romanick832dfa52010-06-17 15:04:20 -0700607 }
Ian Romanick832dfa52010-06-17 15:04:20 -0700608}
609
Bryan Cain25480922013-02-15 09:46:50 -0600610/**
611 * Verify that a geometry shader executable meets all semantic requirements
612 *
Paul Berry44e07de2013-06-11 14:11:05 -0700613 * Also sets prog->Geom.VerticesIn, prog->Geom.UsesClipDistance, and
614 * prog->Geom.ClipDistanceArraySize as a side effect.
Bryan Cain25480922013-02-15 09:46:50 -0600615 *
616 * \param shader Geometry shader executable to be verified
617 */
618void
619validate_geometry_shader_executable(struct gl_shader_program *prog,
620 struct gl_shader *shader)
621{
622 if (shader == NULL)
623 return;
624
625 unsigned num_vertices = vertices_per_prim(prog->Geom.InputType);
626 prog->Geom.VerticesIn = num_vertices;
Paul Berry44e07de2013-06-11 14:11:05 -0700627
Paul Berryb30e25f2013-12-17 09:49:43 -0800628 analyze_clip_usage(prog, shader, &prog->Geom.UsesClipDistance,
Paul Berry44e07de2013-06-11 14:11:05 -0700629 &prog->Geom.ClipDistanceArraySize);
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200630}
Paul Berry1a33e022013-08-18 20:59:37 -0700631
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200632/**
633 * Check if geometry shaders emit to non-zero streams and do corresponding
634 * validations.
635 */
636static void
637validate_geometry_shader_emissions(struct gl_context *ctx,
638 struct gl_shader_program *prog)
639{
640 if (prog->_LinkedShaders[MESA_SHADER_GEOMETRY] != NULL) {
641 find_emit_vertex_visitor emit_vertex(ctx->Const.MaxVertexStreams - 1);
642 emit_vertex.run(prog->_LinkedShaders[MESA_SHADER_GEOMETRY]->ir);
643 if (emit_vertex.error()) {
644 linker_error(prog, "Invalid call %s(%d). Accepted values for the "
Andres Gomezf9fc3ae2014-11-18 08:43:35 -0700645 "stream parameter are in the range [0, %d].\n",
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200646 emit_vertex.error_func(),
647 emit_vertex.error_stream(),
648 ctx->Const.MaxVertexStreams - 1);
649 }
650 prog->Geom.UsesStreams = emit_vertex.uses_streams();
651 prog->Geom.UsesEndPrimitive = emit_vertex.uses_end_primitive();
652
653 /* From the ARB_gpu_shader5 spec:
654 *
655 * "Multiple vertex streams are supported only if the output primitive
656 * type is declared to be "points". A program will fail to link if it
657 * contains a geometry shader calling EmitStreamVertex() or
658 * EndStreamPrimitive() if its output primitive type is not "points".
659 *
660 * However, in the same spec:
661 *
662 * "The function EmitVertex() is equivalent to calling EmitStreamVertex()
663 * with <stream> set to zero."
664 *
665 * And:
666 *
667 * "The function EndPrimitive() is equivalent to calling
668 * EndStreamPrimitive() with <stream> set to zero."
669 *
670 * Since we can call EmitVertex() and EndPrimitive() when we output
671 * primitives other than points, calling EmitStreamVertex(0) or
672 * EmitEndPrimitive(0) should not produce errors. This it also what Nvidia
673 * does. Currently we only set prog->Geom.UsesStreams to TRUE when
674 * EmitStreamVertex() or EmitEndPrimitive() are called with a non-zero
675 * stream.
676 */
677 if (prog->Geom.UsesStreams && prog->Geom.OutputType != GL_POINTS) {
678 linker_error(prog, "EmitStreamVertex(n) and EndStreamPrimitive(n) "
Andres Gomezf9fc3ae2014-11-18 08:43:35 -0700679 "with n>0 requires point output\n");
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200680 }
681 }
Bryan Cain25480922013-02-15 09:46:50 -0600682}
683
Timothy Arceri50859c62015-02-21 21:47:14 +1100684bool
685validate_intrastage_arrays(struct gl_shader_program *prog,
686 ir_variable *const var,
687 ir_variable *const existing)
688{
689 /* Consider the types to be "the same" if both types are arrays
690 * of the same type and one of the arrays is implicitly sized.
691 * In addition, set the type of the linked variable to the
692 * explicitly sized array.
693 */
694 if (var->type->is_array() && existing->type->is_array() &&
695 (var->type->fields.array == existing->type->fields.array) &&
696 ((var->type->length == 0)|| (existing->type->length == 0))) {
697 if (var->type->length != 0) {
698 if (var->type->length <= existing->data.max_array_access) {
699 linker_error(prog, "%s `%s' declared as type "
700 "`%s' but outermost dimension has an index"
701 " of `%i'\n",
702 mode_string(var),
703 var->name, var->type->name,
704 existing->data.max_array_access);
705 }
706 existing->type = var->type;
707 return true;
708 } else if (existing->type->length != 0) {
709 if(existing->type->length <= var->data.max_array_access) {
710 linker_error(prog, "%s `%s' declared as type "
711 "`%s' but outermost dimension has an index"
712 " of `%i'\n",
713 mode_string(var),
714 var->name, existing->type->name,
715 var->data.max_array_access);
716 }
717 return true;
718 }
719 }
720 return false;
721}
722
Ian Romanick832dfa52010-06-17 15:04:20 -0700723
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700724/**
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700725 * Perform validation of global variables used across multiple shaders
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700726 */
Paul Berryb95d2372013-07-27 11:08:31 -0700727void
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700728cross_validate_globals(struct gl_shader_program *prog,
729 struct gl_shader **shader_list,
730 unsigned num_shaders,
731 bool uniforms_only)
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700732{
733 /* Examine all of the uniforms in all of the shaders and cross validate
734 * them.
735 */
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700736 glsl_symbol_table variables;
737 for (unsigned i = 0; i < num_shaders; i++) {
Ian Romanick3322fba2010-10-14 13:28:42 -0700738 if (shader_list[i] == NULL)
739 continue;
740
Matt Turner4d784462014-06-24 21:34:05 -0700741 foreach_in_list(ir_instruction, node, shader_list[i]->ir) {
742 ir_variable *const var = node->as_variable();
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700743
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700744 if (var == NULL)
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700745 continue;
746
Tapani Pälli33ee2c62013-12-12 13:51:01 +0200747 if (uniforms_only && (var->data.mode != ir_var_uniform))
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700748 continue;
749
Ian Romanick7e2aa912010-07-19 17:12:42 -0700750 /* Don't cross validate temporaries that are at global scope. These
751 * will eventually get pulled into the shaders 'main'.
752 */
Tapani Pälli33ee2c62013-12-12 13:51:01 +0200753 if (var->data.mode == ir_var_temporary)
Ian Romanick7e2aa912010-07-19 17:12:42 -0700754 continue;
755
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700756 /* If a global with this name has already been seen, verify that the
757 * new instance has the same type. In addition, if the globals have
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700758 * initializers, the values of the initializers must be the same.
759 */
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700760 ir_variable *const existing = variables.get_variable(var->name);
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700761 if (existing != NULL) {
Timothy Arceri50859c62015-02-21 21:47:14 +1100762 /* Check if types match. Interface blocks have some special
763 * rules so we handle those elsewhere.
764 */
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700765 if (var->type != existing->type) {
Timothy Arceri50859c62015-02-21 21:47:14 +1100766 if (!validate_intrastage_arrays(prog, var, existing)) {
767 if (var->type->is_record() && existing->type->is_record()
768 && existing->type->record_compare(var->type)) {
769 existing->type = var->type;
770 } else {
Timothy Arcerida4fb3e2014-11-25 23:04:23 +1100771 linker_error(prog, "%s `%s' declared as type "
Timothy Arceri50859c62015-02-21 21:47:14 +1100772 "`%s' and type `%s'\n",
Timothy Arcerida4fb3e2014-11-25 23:04:23 +1100773 mode_string(var),
Timothy Arceri50859c62015-02-21 21:47:14 +1100774 var->name, var->type->name,
775 existing->type->name);
Timothy Arcerida4fb3e2014-11-25 23:04:23 +1100776 return;
777 }
Ian Romanicka2711d62010-08-29 22:07:49 -0700778 }
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700779 }
780
Tapani Pälli447bb902013-12-12 15:08:59 +0200781 if (var->data.explicit_location) {
782 if (existing->data.explicit_location
783 && (var->data.location != existing->data.location)) {
Ian Romanick586e7412011-07-28 14:04:09 -0700784 linker_error(prog, "explicit locations for %s "
785 "`%s' have differing values\n",
786 mode_string(var), var->name);
Paul Berryb95d2372013-07-27 11:08:31 -0700787 return;
Ian Romanick68a4fc92010-10-07 17:21:22 -0700788 }
789
Tapani Pälli447bb902013-12-12 15:08:59 +0200790 existing->data.location = var->data.location;
791 existing->data.explicit_location = true;
Ian Romanick68a4fc92010-10-07 17:21:22 -0700792 }
793
Kenneth Graunke9a9a8302013-07-16 12:18:57 -0700794 /* From the GLSL 4.20 specification:
795 * "A link error will result if two compilation units in a program
796 * specify different integer-constant bindings for the same
797 * opaque-uniform name. However, it is not an error to specify a
798 * binding on some but not all declarations for the same name"
799 */
Tapani Pälli447bb902013-12-12 15:08:59 +0200800 if (var->data.explicit_binding) {
801 if (existing->data.explicit_binding &&
802 var->data.binding != existing->data.binding) {
Kenneth Graunke9a9a8302013-07-16 12:18:57 -0700803 linker_error(prog, "explicit bindings for %s "
804 "`%s' have differing values\n",
805 mode_string(var), var->name);
Paul Berryb95d2372013-07-27 11:08:31 -0700806 return;
Kenneth Graunke9a9a8302013-07-16 12:18:57 -0700807 }
808
Tapani Pälli447bb902013-12-12 15:08:59 +0200809 existing->data.binding = var->data.binding;
810 existing->data.explicit_binding = true;
Kenneth Graunke9a9a8302013-07-16 12:18:57 -0700811 }
812
Francisco Jerez5c114932013-09-11 12:14:46 -0700813 if (var->type->contains_atomic() &&
Tapani Pälli447bb902013-12-12 15:08:59 +0200814 var->data.atomic.offset != existing->data.atomic.offset) {
Francisco Jerez5c114932013-09-11 12:14:46 -0700815 linker_error(prog, "offset specifications for %s "
816 "`%s' have differing values\n",
817 mode_string(var), var->name);
818 return;
819 }
820
Ian Romanick46173f92011-10-31 13:07:06 -0700821 /* Validate layout qualifiers for gl_FragDepth.
822 *
823 * From the AMD/ARB_conservative_depth specs:
824 *
825 * "If gl_FragDepth is redeclared in any fragment shader in a
826 * program, it must be redeclared in all fragment shaders in
827 * that program that have static assignments to
828 * gl_FragDepth. All redeclarations of gl_FragDepth in all
829 * fragment shaders in a single program must have the same set
830 * of qualifiers."
831 */
832 if (strcmp(var->name, "gl_FragDepth") == 0) {
Tapani Pälli447bb902013-12-12 15:08:59 +0200833 bool layout_declared = var->data.depth_layout != ir_depth_layout_none;
Ian Romanick46173f92011-10-31 13:07:06 -0700834 bool layout_differs =
Tapani Pälli447bb902013-12-12 15:08:59 +0200835 var->data.depth_layout != existing->data.depth_layout;
Ian Romanick46173f92011-10-31 13:07:06 -0700836
837 if (layout_declared && layout_differs) {
838 linker_error(prog,
839 "All redeclarations of gl_FragDepth in all "
840 "fragment shaders in a single program must have "
Andres Gomezf9fc3ae2014-11-18 08:43:35 -0700841 "the same set of qualifiers.\n");
Ian Romanick46173f92011-10-31 13:07:06 -0700842 }
843
Tapani Pälli33ee2c62013-12-12 13:51:01 +0200844 if (var->data.used && layout_differs) {
Ian Romanick46173f92011-10-31 13:07:06 -0700845 linker_error(prog,
846 "If gl_FragDepth is redeclared with a layout "
847 "qualifier in any fragment shader, it must be "
848 "redeclared with the same layout qualifier in "
849 "all fragment shaders that have assignments to "
Andres Gomezf9fc3ae2014-11-18 08:43:35 -0700850 "gl_FragDepth\n");
Ian Romanick46173f92011-10-31 13:07:06 -0700851 }
852 }
Chad Versaceaddae332011-01-27 01:40:31 -0800853
Ian Romanickf37b1ad2011-10-31 14:31:07 -0700854 /* Page 35 (page 41 of the PDF) of the GLSL 4.20 spec says:
855 *
856 * "If a shared global has multiple initializers, the
857 * initializers must all be constant expressions, and they
858 * must all have the same value. Otherwise, a link error will
859 * result. (A shared global having only one initializer does
860 * not require that initializer to be a constant expression.)"
861 *
862 * Previous to 4.20 the GLSL spec simply said that initializers
863 * must have the same value. In this case of non-constant
864 * initializers, this was impossible to determine. As a result,
865 * no vendor actually implemented that behavior. The 4.20
866 * behavior matches the implemented behavior of at least one other
867 * vendor, so we'll implement that for all GLSL versions.
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700868 */
Ian Romanickf37b1ad2011-10-31 14:31:07 -0700869 if (var->constant_initializer != NULL) {
870 if (existing->constant_initializer != NULL) {
871 if (!var->constant_initializer->has_value(existing->constant_initializer)) {
Ian Romanick586e7412011-07-28 14:04:09 -0700872 linker_error(prog, "initializers for %s "
873 "`%s' have differing values\n",
874 mode_string(var), var->name);
Paul Berryb95d2372013-07-27 11:08:31 -0700875 return;
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700876 }
Ian Romanickf37b1ad2011-10-31 14:31:07 -0700877 } else {
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700878 /* If the first-seen instance of a particular uniform did not
879 * have an initializer but a later instance does, copy the
880 * initializer to the version stored in the symbol table.
881 */
Ian Romanickde415b72010-07-14 13:22:12 -0700882 /* FINISHME: This is wrong. The constant_value field should
883 * FINISHME: not be modified! Imagine a case where a shader
884 * FINISHME: without an initializer is linked in two different
885 * FINISHME: programs with shaders that have differing
886 * FINISHME: initializers. Linking with the first will
887 * FINISHME: modify the shader, and linking with the second
888 * FINISHME: will fail.
889 */
Ian Romanickf37b1ad2011-10-31 14:31:07 -0700890 existing->constant_initializer =
891 var->constant_initializer->clone(ralloc_parent(existing),
892 NULL);
893 }
894 }
895
Tapani Pälli447bb902013-12-12 15:08:59 +0200896 if (var->data.has_initializer) {
897 if (existing->data.has_initializer
Ian Romanickf37b1ad2011-10-31 14:31:07 -0700898 && (var->constant_initializer == NULL
899 || existing->constant_initializer == NULL)) {
900 linker_error(prog,
901 "shared global variable `%s' has multiple "
902 "non-constant initializers.\n",
903 var->name);
Paul Berryb95d2372013-07-27 11:08:31 -0700904 return;
Ian Romanickf37b1ad2011-10-31 14:31:07 -0700905 }
906
907 /* Some instance had an initializer, so keep track of that. In
908 * this location, all sorts of initializers (constant or
909 * otherwise) will propagate the existence to the variable
910 * stored in the symbol table.
911 */
Tapani Pälli447bb902013-12-12 15:08:59 +0200912 existing->data.has_initializer = true;
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700913 }
Chad Versace7528f142010-11-17 14:34:38 -0800914
Tapani Pällic1d30802013-12-12 12:57:57 +0200915 if (existing->data.invariant != var->data.invariant) {
Ian Romanick586e7412011-07-28 14:04:09 -0700916 linker_error(prog, "declarations for %s `%s' have "
917 "mismatching invariant qualifiers\n",
918 mode_string(var), var->name);
Paul Berryb95d2372013-07-27 11:08:31 -0700919 return;
Chad Versace7528f142010-11-17 14:34:38 -0800920 }
Tapani Pällic1d30802013-12-12 12:57:57 +0200921 if (existing->data.centroid != var->data.centroid) {
Ian Romanick586e7412011-07-28 14:04:09 -0700922 linker_error(prog, "declarations for %s `%s' have "
923 "mismatching centroid qualifiers\n",
924 mode_string(var), var->name);
Paul Berryb95d2372013-07-27 11:08:31 -0700925 return;
Chad Versace61428dd2011-01-10 15:29:30 -0800926 }
Tapani Pällic1d30802013-12-12 12:57:57 +0200927 if (existing->data.sample != var->data.sample) {
Chris Forbes51c5fc82013-11-29 21:26:10 +1300928 linker_error(prog, "declarations for %s `%s` have "
929 "mismatching sample qualifiers\n",
930 mode_string(var), var->name);
931 return;
932 }
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700933 } else
Eric Anholt001eee52010-11-05 06:11:24 -0700934 variables.add_variable(var);
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700935 }
936 }
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700937}
938
939
Ian Romanick37101922010-06-18 19:02:10 -0700940/**
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700941 * Perform validation of uniforms used across multiple shader stages
942 */
Paul Berryb95d2372013-07-27 11:08:31 -0700943void
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700944cross_validate_uniforms(struct gl_shader_program *prog)
945{
Paul Berryb95d2372013-07-27 11:08:31 -0700946 cross_validate_globals(prog, prog->_LinkedShaders,
Paul Berry665b8d72014-01-07 10:11:39 -0800947 MESA_SHADER_STAGES, true);
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700948}
949
Eric Anholtf609cf72012-04-27 13:52:56 -0700950/**
951 * Accumulates the array of prog->UniformBlocks and checks that all
952 * definitons of blocks agree on their contents.
953 */
954static bool
955interstage_cross_validate_uniform_blocks(struct gl_shader_program *prog)
956{
957 unsigned max_num_uniform_blocks = 0;
Paul Berry665b8d72014-01-07 10:11:39 -0800958 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Eric Anholtf609cf72012-04-27 13:52:56 -0700959 if (prog->_LinkedShaders[i])
960 max_num_uniform_blocks += prog->_LinkedShaders[i]->NumUniformBlocks;
961 }
962
Paul Berry665b8d72014-01-07 10:11:39 -0800963 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Eric Anholtf609cf72012-04-27 13:52:56 -0700964 struct gl_shader *sh = prog->_LinkedShaders[i];
965
966 prog->UniformBlockStageIndex[i] = ralloc_array(prog, int,
967 max_num_uniform_blocks);
968 for (unsigned int j = 0; j < max_num_uniform_blocks; j++)
969 prog->UniformBlockStageIndex[i][j] = -1;
970
971 if (sh == NULL)
972 continue;
973
974 for (unsigned int j = 0; j < sh->NumUniformBlocks; j++) {
975 int index = link_cross_validate_uniform_block(prog,
976 &prog->UniformBlocks,
977 &prog->NumUniformBlocks,
978 &sh->UniformBlocks[j]);
979
980 if (index == -1) {
Andres Gomezf9fc3ae2014-11-18 08:43:35 -0700981 linker_error(prog, "uniform block `%s' has mismatching definitions\n",
Eric Anholtf609cf72012-04-27 13:52:56 -0700982 sh->UniformBlocks[j].Name);
983 return false;
984 }
985
986 prog->UniformBlockStageIndex[i][index] = j;
987 }
988 }
989
990 return true;
991}
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700992
Ian Romanick37101922010-06-18 19:02:10 -0700993
Ian Romanick3fb87872010-07-09 14:09:34 -0700994/**
995 * Populates a shaders symbol table with all global declarations
996 */
997static void
998populate_symbol_table(gl_shader *sh)
999{
1000 sh->symbols = new(sh) glsl_symbol_table;
1001
Matt Turner4d784462014-06-24 21:34:05 -07001002 foreach_in_list(ir_instruction, inst, sh->ir) {
Ian Romanick3fb87872010-07-09 14:09:34 -07001003 ir_variable *var;
1004 ir_function *func;
1005
1006 if ((func = inst->as_function()) != NULL) {
Eric Anholte8f5ebf2010-11-05 06:08:45 -07001007 sh->symbols->add_function(func);
Ian Romanick3fb87872010-07-09 14:09:34 -07001008 } else if ((var = inst->as_variable()) != NULL) {
Ian Romanicka9948242014-07-08 18:53:09 -07001009 if (var->data.mode != ir_var_temporary)
1010 sh->symbols->add_variable(var);
Ian Romanick3fb87872010-07-09 14:09:34 -07001011 }
1012 }
1013}
1014
1015
1016/**
Ian Romanick31a97862010-07-12 18:48:50 -07001017 * Remap variables referenced in an instruction tree
1018 *
1019 * This is used when instruction trees are cloned from one shader and placed in
1020 * another. These trees will contain references to \c ir_variable nodes that
1021 * do not exist in the target shader. This function finds these \c ir_variable
1022 * references and replaces the references with matching variables in the target
1023 * shader.
1024 *
1025 * If there is no matching variable in the target shader, a clone of the
1026 * \c ir_variable is made and added to the target shader. The new variable is
1027 * added to \b both the instruction stream and the symbol table.
1028 *
1029 * \param inst IR tree that is to be processed.
1030 * \param symbols Symbol table containing global scope symbols in the
1031 * linked shader.
1032 * \param instructions Instruction stream where new variable declarations
1033 * should be added.
1034 */
1035void
Eric Anholt8273bd42010-08-04 12:34:56 -07001036remap_variables(ir_instruction *inst, struct gl_shader *target,
1037 hash_table *temps)
Ian Romanick31a97862010-07-12 18:48:50 -07001038{
1039 class remap_visitor : public ir_hierarchical_visitor {
1040 public:
Eric Anholt8273bd42010-08-04 12:34:56 -07001041 remap_visitor(struct gl_shader *target,
Ian Romanick7e2aa912010-07-19 17:12:42 -07001042 hash_table *temps)
Ian Romanick31a97862010-07-12 18:48:50 -07001043 {
Eric Anholt8273bd42010-08-04 12:34:56 -07001044 this->target = target;
1045 this->symbols = target->symbols;
1046 this->instructions = target->ir;
Ian Romanick7e2aa912010-07-19 17:12:42 -07001047 this->temps = temps;
Ian Romanick31a97862010-07-12 18:48:50 -07001048 }
1049
1050 virtual ir_visitor_status visit(ir_dereference_variable *ir)
1051 {
Tapani Pälli33ee2c62013-12-12 13:51:01 +02001052 if (ir->var->data.mode == ir_var_temporary) {
Ian Romanick7e2aa912010-07-19 17:12:42 -07001053 ir_variable *var = (ir_variable *) hash_table_find(temps, ir->var);
1054
1055 assert(var != NULL);
1056 ir->var = var;
1057 return visit_continue;
1058 }
1059
Ian Romanick31a97862010-07-12 18:48:50 -07001060 ir_variable *const existing =
1061 this->symbols->get_variable(ir->var->name);
1062 if (existing != NULL)
1063 ir->var = existing;
1064 else {
Eric Anholt8273bd42010-08-04 12:34:56 -07001065 ir_variable *copy = ir->var->clone(this->target, NULL);
Ian Romanick31a97862010-07-12 18:48:50 -07001066
Eric Anholt001eee52010-11-05 06:11:24 -07001067 this->symbols->add_variable(copy);
Ian Romanick31a97862010-07-12 18:48:50 -07001068 this->instructions->push_head(copy);
Ian Romanick7e2aa912010-07-19 17:12:42 -07001069 ir->var = copy;
Ian Romanick31a97862010-07-12 18:48:50 -07001070 }
1071
1072 return visit_continue;
1073 }
1074
1075 private:
Eric Anholt8273bd42010-08-04 12:34:56 -07001076 struct gl_shader *target;
Ian Romanick31a97862010-07-12 18:48:50 -07001077 glsl_symbol_table *symbols;
1078 exec_list *instructions;
Ian Romanick7e2aa912010-07-19 17:12:42 -07001079 hash_table *temps;
Ian Romanick31a97862010-07-12 18:48:50 -07001080 };
1081
Eric Anholt8273bd42010-08-04 12:34:56 -07001082 remap_visitor v(target, temps);
Ian Romanick31a97862010-07-12 18:48:50 -07001083
1084 inst->accept(&v);
1085}
1086
1087
1088/**
1089 * Move non-declarations from one instruction stream to another
1090 *
1091 * The intended usage pattern of this function is to pass the pointer to the
Eric Anholt62c47632010-07-29 13:52:25 -07001092 * 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 -07001093 * pointer) for \c last and \c false for \c make_copies on the first
1094 * call. Successive calls pass the return value of the previous call for
1095 * \c last and \c true for \c make_copies.
1096 *
1097 * \param instructions Source instruction stream
1098 * \param last Instruction after which new instructions should be
1099 * inserted in the target instruction stream
1100 * \param make_copies Flag selecting whether instructions in \c instructions
1101 * should be copied (via \c ir_instruction::clone) into the
1102 * target list or moved.
1103 *
1104 * \return
1105 * The new "last" instruction in the target instruction stream. This pointer
1106 * is suitable for use as the \c last parameter of a later call to this
1107 * function.
1108 */
1109exec_node *
1110move_non_declarations(exec_list *instructions, exec_node *last,
1111 bool make_copies, gl_shader *target)
1112{
Ian Romanick7e2aa912010-07-19 17:12:42 -07001113 hash_table *temps = NULL;
1114
1115 if (make_copies)
1116 temps = hash_table_ctor(0, hash_table_pointer_hash,
1117 hash_table_pointer_compare);
1118
Matt Turnerc6a16f62014-06-24 21:58:35 -07001119 foreach_in_list_safe(ir_instruction, inst, instructions) {
Ian Romanick7e2aa912010-07-19 17:12:42 -07001120 if (inst->as_function())
Ian Romanick31a97862010-07-12 18:48:50 -07001121 continue;
1122
Ian Romanick7e2aa912010-07-19 17:12:42 -07001123 ir_variable *var = inst->as_variable();
Tapani Pälli33ee2c62013-12-12 13:51:01 +02001124 if ((var != NULL) && (var->data.mode != ir_var_temporary))
Ian Romanick7e2aa912010-07-19 17:12:42 -07001125 continue;
1126
1127 assert(inst->as_assignment()
Kenneth Graunked884f602012-03-20 15:56:37 -07001128 || inst->as_call()
Kenneth Graunkeb45a68e2012-10-24 13:17:24 -07001129 || inst->as_if() /* for initializers with the ?: operator */
Tapani Pälli33ee2c62013-12-12 13:51:01 +02001130 || ((var != NULL) && (var->data.mode == ir_var_temporary)));
Ian Romanick31a97862010-07-12 18:48:50 -07001131
1132 if (make_copies) {
Eric Anholt8273bd42010-08-04 12:34:56 -07001133 inst = inst->clone(target, NULL);
Ian Romanick7e2aa912010-07-19 17:12:42 -07001134
1135 if (var != NULL)
1136 hash_table_insert(temps, inst, var);
1137 else
Eric Anholt8273bd42010-08-04 12:34:56 -07001138 remap_variables(inst, target, temps);
Ian Romanick31a97862010-07-12 18:48:50 -07001139 } else {
1140 inst->remove();
1141 }
1142
1143 last->insert_after(inst);
1144 last = inst;
1145 }
1146
Ian Romanick7e2aa912010-07-19 17:12:42 -07001147 if (make_copies)
1148 hash_table_dtor(temps);
1149
Ian Romanick31a97862010-07-12 18:48:50 -07001150 return last;
1151}
1152
1153/**
Ian Romanick15ce87e2010-07-09 15:28:22 -07001154 * Get the function signature for main from a shader
1155 */
Ian Romanick04d33232014-06-19 12:05:20 -07001156ir_function_signature *
1157link_get_main_function_signature(gl_shader *sh)
Ian Romanick15ce87e2010-07-09 15:28:22 -07001158{
1159 ir_function *const f = sh->symbols->get_function("main");
1160 if (f != NULL) {
1161 exec_list void_parameters;
1162
1163 /* Look for the 'void main()' signature and ensure that it's defined.
1164 * This keeps the linker from accidentally pick a shader that just
1165 * contains a prototype for main.
1166 *
1167 * We don't have to check for multiple definitions of main (in multiple
1168 * shaders) because that would have already been caught above.
1169 */
Kenneth Graunke21129d42014-07-24 14:05:40 -07001170 ir_function_signature *sig =
1171 f->matching_signature(NULL, &void_parameters, false);
Ian Romanick15ce87e2010-07-09 15:28:22 -07001172 if ((sig != NULL) && sig->is_defined) {
1173 return sig;
1174 }
1175 }
1176
1177 return NULL;
1178}
1179
1180
1181/**
Brian Paul84a12732012-02-02 20:10:40 -07001182 * This class is only used in link_intrastage_shaders() below but declaring
1183 * it inside that function leads to compiler warnings with some versions of
1184 * gcc.
1185 */
1186class array_sizing_visitor : public ir_hierarchical_visitor {
1187public:
Paul Berry15e05b92013-09-25 14:07:37 -07001188 array_sizing_visitor()
1189 : mem_ctx(ralloc_context(NULL)),
1190 unnamed_interfaces(hash_table_ctor(0, hash_table_pointer_hash,
1191 hash_table_pointer_compare))
1192 {
1193 }
1194
1195 ~array_sizing_visitor()
1196 {
1197 hash_table_dtor(this->unnamed_interfaces);
1198 ralloc_free(this->mem_ctx);
1199 }
1200
Brian Paul84a12732012-02-02 20:10:40 -07001201 virtual ir_visitor_status visit(ir_variable *var)
1202 {
Tapani Pälli447bb902013-12-12 15:08:59 +02001203 fixup_type(&var->type, var->data.max_array_access);
Paul Berrye2266692013-09-23 10:44:19 -07001204 if (var->type->is_interface()) {
1205 if (interface_contains_unsized_arrays(var->type)) {
1206 const glsl_type *new_type =
Ian Romanick21df0162014-05-23 18:57:36 -07001207 resize_interface_members(var->type,
1208 var->get_max_ifc_array_access());
Paul Berrye2266692013-09-23 10:44:19 -07001209 var->type = new_type;
1210 var->change_interface_type(new_type);
1211 }
1212 } else if (var->type->is_array() &&
1213 var->type->fields.array->is_interface()) {
1214 if (interface_contains_unsized_arrays(var->type->fields.array)) {
1215 const glsl_type *new_type =
1216 resize_interface_members(var->type->fields.array,
Ian Romanick21df0162014-05-23 18:57:36 -07001217 var->get_max_ifc_array_access());
Paul Berrye2266692013-09-23 10:44:19 -07001218 var->change_interface_type(new_type);
1219 var->type =
1220 glsl_type::get_array_instance(new_type, var->type->length);
1221 }
Paul Berry15e05b92013-09-25 14:07:37 -07001222 } else if (const glsl_type *ifc_type = var->get_interface_type()) {
1223 /* Store a pointer to the variable in the unnamed_interfaces
1224 * hashtable.
1225 */
1226 ir_variable **interface_vars = (ir_variable **)
1227 hash_table_find(this->unnamed_interfaces, ifc_type);
1228 if (interface_vars == NULL) {
1229 interface_vars = rzalloc_array(mem_ctx, ir_variable *,
1230 ifc_type->length);
1231 hash_table_insert(this->unnamed_interfaces, interface_vars,
1232 ifc_type);
1233 }
1234 unsigned index = ifc_type->field_index(var->name);
1235 assert(index < ifc_type->length);
1236 assert(interface_vars[index] == NULL);
1237 interface_vars[index] = var;
Brian Paul84a12732012-02-02 20:10:40 -07001238 }
1239 return visit_continue;
1240 }
Paul Berrye2266692013-09-23 10:44:19 -07001241
Paul Berry15e05b92013-09-25 14:07:37 -07001242 /**
1243 * For each unnamed interface block that was discovered while running the
1244 * visitor, adjust the interface type to reflect the newly assigned array
1245 * sizes, and fix up the ir_variable nodes to point to the new interface
1246 * type.
1247 */
1248 void fixup_unnamed_interface_types()
1249 {
1250 hash_table_call_foreach(this->unnamed_interfaces,
1251 fixup_unnamed_interface_type, NULL);
1252 }
1253
Paul Berrye2266692013-09-23 10:44:19 -07001254private:
1255 /**
1256 * If the type pointed to by \c type represents an unsized array, replace
1257 * it with a sized array whose size is determined by max_array_access.
1258 */
1259 static void fixup_type(const glsl_type **type, unsigned max_array_access)
1260 {
Timothy Arcerib59c5922013-10-23 21:31:27 +11001261 if ((*type)->is_unsized_array()) {
Paul Berrye2266692013-09-23 10:44:19 -07001262 *type = glsl_type::get_array_instance((*type)->fields.array,
1263 max_array_access + 1);
1264 assert(*type != NULL);
1265 }
1266 }
1267
1268 /**
1269 * Determine whether the given interface type contains unsized arrays (if
1270 * it doesn't, array_sizing_visitor doesn't need to process it).
1271 */
1272 static bool interface_contains_unsized_arrays(const glsl_type *type)
1273 {
1274 for (unsigned i = 0; i < type->length; i++) {
1275 const glsl_type *elem_type = type->fields.structure[i].type;
Timothy Arcerib59c5922013-10-23 21:31:27 +11001276 if (elem_type->is_unsized_array())
Paul Berrye2266692013-09-23 10:44:19 -07001277 return true;
1278 }
1279 return false;
1280 }
1281
1282 /**
1283 * Create a new interface type based on the given type, with unsized arrays
1284 * replaced by sized arrays whose size is determined by
1285 * max_ifc_array_access.
1286 */
1287 static const glsl_type *
1288 resize_interface_members(const glsl_type *type,
1289 const unsigned *max_ifc_array_access)
1290 {
1291 unsigned num_fields = type->length;
1292 glsl_struct_field *fields = new glsl_struct_field[num_fields];
1293 memcpy(fields, type->fields.structure,
1294 num_fields * sizeof(*fields));
1295 for (unsigned i = 0; i < num_fields; i++) {
1296 fixup_type(&fields[i].type, max_ifc_array_access[i]);
1297 }
1298 glsl_interface_packing packing =
1299 (glsl_interface_packing) type->interface_packing;
1300 const glsl_type *new_ifc_type =
1301 glsl_type::get_interface_instance(fields, num_fields,
1302 packing, type->name);
1303 delete [] fields;
1304 return new_ifc_type;
1305 }
Paul Berry15e05b92013-09-25 14:07:37 -07001306
1307 static void fixup_unnamed_interface_type(const void *key, void *data,
1308 void *)
1309 {
1310 const glsl_type *ifc_type = (const glsl_type *) key;
1311 ir_variable **interface_vars = (ir_variable **) data;
1312 unsigned num_fields = ifc_type->length;
1313 glsl_struct_field *fields = new glsl_struct_field[num_fields];
1314 memcpy(fields, ifc_type->fields.structure,
1315 num_fields * sizeof(*fields));
1316 bool interface_type_changed = false;
1317 for (unsigned i = 0; i < num_fields; i++) {
1318 if (interface_vars[i] != NULL &&
1319 fields[i].type != interface_vars[i]->type) {
1320 fields[i].type = interface_vars[i]->type;
1321 interface_type_changed = true;
1322 }
1323 }
1324 if (!interface_type_changed) {
1325 delete [] fields;
1326 return;
1327 }
1328 glsl_interface_packing packing =
1329 (glsl_interface_packing) ifc_type->interface_packing;
1330 const glsl_type *new_ifc_type =
1331 glsl_type::get_interface_instance(fields, num_fields, packing,
1332 ifc_type->name);
1333 delete [] fields;
1334 for (unsigned i = 0; i < num_fields; i++) {
1335 if (interface_vars[i] != NULL)
1336 interface_vars[i]->change_interface_type(new_ifc_type);
1337 }
1338 }
1339
1340 /**
1341 * Memory context used to allocate the data in \c unnamed_interfaces.
1342 */
1343 void *mem_ctx;
1344
1345 /**
1346 * Hash table from const glsl_type * to an array of ir_variable *'s
1347 * pointing to the ir_variables constituting each unnamed interface block.
1348 */
1349 hash_table *unnamed_interfaces;
Brian Paul84a12732012-02-02 20:10:40 -07001350};
1351
Brian Paul84a12732012-02-02 20:10:40 -07001352/**
Anuj Phogat35f11e82014-02-05 15:01:58 -08001353 * Performs the cross-validation of layout qualifiers specified in
1354 * redeclaration of gl_FragCoord for the attached fragment shaders,
1355 * and propagates them to the linked FS and linked shader program.
1356 */
1357static void
1358link_fs_input_layout_qualifiers(struct gl_shader_program *prog,
1359 struct gl_shader *linked_shader,
1360 struct gl_shader **shader_list,
1361 unsigned num_shaders)
1362{
1363 linked_shader->redeclares_gl_fragcoord = false;
1364 linked_shader->uses_gl_fragcoord = false;
1365 linked_shader->origin_upper_left = false;
1366 linked_shader->pixel_center_integer = false;
1367
Anuj Phogat9bcb0a82014-02-10 14:12:40 -08001368 if (linked_shader->Stage != MESA_SHADER_FRAGMENT ||
1369 (prog->Version < 150 && !prog->ARB_fragment_coord_conventions_enable))
Anuj Phogat35f11e82014-02-05 15:01:58 -08001370 return;
1371
1372 for (unsigned i = 0; i < num_shaders; i++) {
1373 struct gl_shader *shader = shader_list[i];
1374 /* From the GLSL 1.50 spec, page 39:
1375 *
1376 * "If gl_FragCoord is redeclared in any fragment shader in a program,
1377 * it must be redeclared in all the fragment shaders in that program
1378 * that have a static use gl_FragCoord."
1379 *
1380 * Exclude the case when one of the 'linked_shader' or 'shader' redeclares
1381 * gl_FragCoord with no layout qualifiers but the other one doesn't
1382 * redeclare it. If we strictly follow GLSL 1.50 spec's language, it
1383 * should be a link error. But, generating link error for this case will
1384 * be a wrong behaviour which spec didn't intend to do and it could also
1385 * break some applications.
1386 */
1387 if ((linked_shader->redeclares_gl_fragcoord
1388 && !shader->redeclares_gl_fragcoord
1389 && shader->uses_gl_fragcoord
1390 && (linked_shader->origin_upper_left
1391 || linked_shader->pixel_center_integer))
1392 || (shader->redeclares_gl_fragcoord
1393 && !linked_shader->redeclares_gl_fragcoord
1394 && linked_shader->uses_gl_fragcoord
1395 && (shader->origin_upper_left
1396 || shader->pixel_center_integer))) {
1397 linker_error(prog, "fragment shader defined with conflicting "
1398 "layout qualifiers for gl_FragCoord\n");
1399 }
1400
1401 /* From the GLSL 1.50 spec, page 39:
1402 *
1403 * "All redeclarations of gl_FragCoord in all fragment shaders in a
1404 * single program must have the same set of qualifiers."
1405 */
1406 if (linked_shader->redeclares_gl_fragcoord && shader->redeclares_gl_fragcoord
1407 && (shader->origin_upper_left != linked_shader->origin_upper_left
1408 || shader->pixel_center_integer != linked_shader->pixel_center_integer)) {
1409 linker_error(prog, "fragment shader defined with conflicting "
1410 "layout qualifiers for gl_FragCoord\n");
1411 }
1412
1413 /* Update the linked shader state.  Note that uses_gl_fragcoord should
1414 * accumulate the results.  The other values should replace.  If there
1415 * are multiple redeclarations, all the fields except uses_gl_fragcoord
1416 * are already known to be the same.
1417 */
1418 if (shader->redeclares_gl_fragcoord || shader->uses_gl_fragcoord) {
1419 linked_shader->redeclares_gl_fragcoord =
1420 shader->redeclares_gl_fragcoord;
1421 linked_shader->uses_gl_fragcoord = linked_shader->uses_gl_fragcoord
1422 || shader->uses_gl_fragcoord;
1423 linked_shader->origin_upper_left = shader->origin_upper_left;
1424 linked_shader->pixel_center_integer = shader->pixel_center_integer;
1425 }
1426 }
1427}
1428
1429/**
Eric Anholt6065a872013-06-12 18:12:40 -07001430 * Performs the cross-validation of geometry shader max_vertices and
1431 * primitive type layout qualifiers for the attached geometry shaders,
1432 * and propagates them to the linked GS and linked shader program.
1433 */
1434static void
1435link_gs_inout_layout_qualifiers(struct gl_shader_program *prog,
1436 struct gl_shader *linked_shader,
1437 struct gl_shader **shader_list,
1438 unsigned num_shaders)
1439{
1440 linked_shader->Geom.VerticesOut = 0;
Jordan Justen31340202014-01-25 02:17:21 -08001441 linked_shader->Geom.Invocations = 0;
Eric Anholt6065a872013-06-12 18:12:40 -07001442 linked_shader->Geom.InputType = PRIM_UNKNOWN;
1443 linked_shader->Geom.OutputType = PRIM_UNKNOWN;
1444
1445 /* No in/out qualifiers defined for anything but GLSL 1.50+
1446 * geometry shaders so far.
1447 */
Paul Berrye3b86f02014-01-07 10:58:56 -08001448 if (linked_shader->Stage != MESA_SHADER_GEOMETRY || prog->Version < 150)
Eric Anholt6065a872013-06-12 18:12:40 -07001449 return;
1450
1451 /* From the GLSL 1.50 spec, page 46:
1452 *
1453 * "All geometry shader output layout declarations in a program
1454 * must declare the same layout and same value for
1455 * max_vertices. There must be at least one geometry output
1456 * layout declaration somewhere in a program, but not all
1457 * geometry shaders (compilation units) are required to
1458 * declare it."
1459 */
1460
1461 for (unsigned i = 0; i < num_shaders; i++) {
1462 struct gl_shader *shader = shader_list[i];
1463
1464 if (shader->Geom.InputType != PRIM_UNKNOWN) {
1465 if (linked_shader->Geom.InputType != PRIM_UNKNOWN &&
1466 linked_shader->Geom.InputType != shader->Geom.InputType) {
1467 linker_error(prog, "geometry shader defined with conflicting "
1468 "input types\n");
1469 return;
1470 }
1471 linked_shader->Geom.InputType = shader->Geom.InputType;
1472 }
1473
1474 if (shader->Geom.OutputType != PRIM_UNKNOWN) {
1475 if (linked_shader->Geom.OutputType != PRIM_UNKNOWN &&
1476 linked_shader->Geom.OutputType != shader->Geom.OutputType) {
1477 linker_error(prog, "geometry shader defined with conflicting "
1478 "output types\n");
1479 return;
1480 }
1481 linked_shader->Geom.OutputType = shader->Geom.OutputType;
1482 }
1483
1484 if (shader->Geom.VerticesOut != 0) {
1485 if (linked_shader->Geom.VerticesOut != 0 &&
1486 linked_shader->Geom.VerticesOut != shader->Geom.VerticesOut) {
1487 linker_error(prog, "geometry shader defined with conflicting "
1488 "output vertex count (%d and %d)\n",
1489 linked_shader->Geom.VerticesOut,
1490 shader->Geom.VerticesOut);
1491 return;
1492 }
1493 linked_shader->Geom.VerticesOut = shader->Geom.VerticesOut;
1494 }
Jordan Justen31340202014-01-25 02:17:21 -08001495
1496 if (shader->Geom.Invocations != 0) {
1497 if (linked_shader->Geom.Invocations != 0 &&
1498 linked_shader->Geom.Invocations != shader->Geom.Invocations) {
1499 linker_error(prog, "geometry shader defined with conflicting "
1500 "invocation count (%d and %d)\n",
1501 linked_shader->Geom.Invocations,
1502 shader->Geom.Invocations);
1503 return;
1504 }
1505 linked_shader->Geom.Invocations = shader->Geom.Invocations;
1506 }
Eric Anholt6065a872013-06-12 18:12:40 -07001507 }
1508
1509 /* Just do the intrastage -> interstage propagation right now,
1510 * since we already know we're in the right type of shader program
1511 * for doing it.
1512 */
1513 if (linked_shader->Geom.InputType == PRIM_UNKNOWN) {
1514 linker_error(prog,
1515 "geometry shader didn't declare primitive input type\n");
1516 return;
1517 }
1518 prog->Geom.InputType = linked_shader->Geom.InputType;
1519
1520 if (linked_shader->Geom.OutputType == PRIM_UNKNOWN) {
1521 linker_error(prog,
1522 "geometry shader didn't declare primitive output type\n");
1523 return;
1524 }
1525 prog->Geom.OutputType = linked_shader->Geom.OutputType;
1526
1527 if (linked_shader->Geom.VerticesOut == 0) {
1528 linker_error(prog,
1529 "geometry shader didn't declare max_vertices\n");
1530 return;
1531 }
1532 prog->Geom.VerticesOut = linked_shader->Geom.VerticesOut;
Jordan Justen31340202014-01-25 02:17:21 -08001533
1534 if (linked_shader->Geom.Invocations == 0)
1535 linked_shader->Geom.Invocations = 1;
1536
1537 prog->Geom.Invocations = linked_shader->Geom.Invocations;
Eric Anholt6065a872013-06-12 18:12:40 -07001538}
1539
Paul Berry28ce6042014-01-08 11:59:28 -08001540
1541/**
1542 * Perform cross-validation of compute shader local_size_{x,y,z} layout
1543 * qualifiers for the attached compute shaders, and propagate them to the
1544 * linked CS and linked shader program.
1545 */
1546static void
1547link_cs_input_layout_qualifiers(struct gl_shader_program *prog,
1548 struct gl_shader *linked_shader,
1549 struct gl_shader **shader_list,
1550 unsigned num_shaders)
1551{
1552 for (int i = 0; i < 3; i++)
1553 linked_shader->Comp.LocalSize[i] = 0;
1554
1555 /* This function is called for all shader stages, but it only has an effect
1556 * for compute shaders.
1557 */
1558 if (linked_shader->Stage != MESA_SHADER_COMPUTE)
1559 return;
1560
1561 /* From the ARB_compute_shader spec, in the section describing local size
1562 * declarations:
1563 *
1564 * If multiple compute shaders attached to a single program object
1565 * declare local work-group size, the declarations must be identical;
1566 * otherwise a link-time error results. Furthermore, if a program
1567 * object contains any compute shaders, at least one must contain an
1568 * input layout qualifier specifying the local work sizes of the
1569 * program, or a link-time error will occur.
1570 */
1571 for (unsigned sh = 0; sh < num_shaders; sh++) {
1572 struct gl_shader *shader = shader_list[sh];
1573
1574 if (shader->Comp.LocalSize[0] != 0) {
1575 if (linked_shader->Comp.LocalSize[0] != 0) {
1576 for (int i = 0; i < 3; i++) {
1577 if (linked_shader->Comp.LocalSize[i] !=
1578 shader->Comp.LocalSize[i]) {
1579 linker_error(prog, "compute shader defined with conflicting "
1580 "local sizes\n");
1581 return;
1582 }
1583 }
1584 }
1585 for (int i = 0; i < 3; i++)
1586 linked_shader->Comp.LocalSize[i] = shader->Comp.LocalSize[i];
1587 }
1588 }
1589
1590 /* Just do the intrastage -> interstage propagation right now,
1591 * since we already know we're in the right type of shader program
1592 * for doing it.
1593 */
1594 if (linked_shader->Comp.LocalSize[0] == 0) {
1595 linker_error(prog, "compute shader didn't declare local size\n");
1596 return;
1597 }
1598 for (int i = 0; i < 3; i++)
1599 prog->Comp.LocalSize[i] = linked_shader->Comp.LocalSize[i];
1600}
1601
1602
Eric Anholt6065a872013-06-12 18:12:40 -07001603/**
Ian Romanick3fb87872010-07-09 14:09:34 -07001604 * Combine a group of shaders for a single stage to generate a linked shader
1605 *
1606 * \note
1607 * If this function is supplied a single shader, it is cloned, and the new
1608 * shader is returned.
1609 */
1610static struct gl_shader *
Kenneth Graunke2da02e72010-11-17 11:03:57 -08001611link_intrastage_shaders(void *mem_ctx,
1612 struct gl_context *ctx,
Eric Anholt5d0f4302010-08-18 12:02:35 -07001613 struct gl_shader_program *prog,
Ian Romanick3fb87872010-07-09 14:09:34 -07001614 struct gl_shader **shader_list,
1615 unsigned num_shaders)
1616{
Eric Anholtf609cf72012-04-27 13:52:56 -07001617 struct gl_uniform_block *uniform_blocks = NULL;
Eric Anholtf609cf72012-04-27 13:52:56 -07001618
Ian Romanick13f782c2010-06-29 18:53:38 -07001619 /* Check that global variables defined in multiple shaders are consistent.
1620 */
Paul Berryb95d2372013-07-27 11:08:31 -07001621 cross_validate_globals(prog, shader_list, num_shaders, false);
1622 if (!prog->LinkStatus)
Ian Romanick13f782c2010-06-29 18:53:38 -07001623 return NULL;
1624
Jordan Justen4a0bcd92013-05-20 23:42:49 -07001625 /* Check that interface blocks defined in multiple shaders are consistent.
1626 */
Paul Berryb95d2372013-07-27 11:08:31 -07001627 validate_intrastage_interface_blocks(prog, (const gl_shader **)shader_list,
1628 num_shaders);
1629 if (!prog->LinkStatus)
Jordan Justen4a0bcd92013-05-20 23:42:49 -07001630 return NULL;
1631
Paul Berry4682b9b2013-07-27 15:07:08 -07001632 /* Link up uniform blocks defined within this stage. */
1633 const unsigned num_uniform_blocks =
Ian Romanick514f8c72013-01-22 01:09:16 -05001634 link_uniform_blocks(mem_ctx, prog, shader_list, num_shaders,
1635 &uniform_blocks);
Juha-Pekka Heikkila088da372014-04-03 17:06:42 +03001636 if (!prog->LinkStatus)
1637 return NULL;
Eric Anholtf609cf72012-04-27 13:52:56 -07001638
Ian Romanick13f782c2010-06-29 18:53:38 -07001639 /* Check that there is only a single definition of each function signature
1640 * across all shaders.
1641 */
1642 for (unsigned i = 0; i < (num_shaders - 1); i++) {
Matt Turner4d784462014-06-24 21:34:05 -07001643 foreach_in_list(ir_instruction, node, shader_list[i]->ir) {
1644 ir_function *const f = node->as_function();
Ian Romanick13f782c2010-06-29 18:53:38 -07001645
1646 if (f == NULL)
1647 continue;
1648
1649 for (unsigned j = i + 1; j < num_shaders; j++) {
1650 ir_function *const other =
1651 shader_list[j]->symbols->get_function(f->name);
1652
1653 /* If the other shader has no function (and therefore no function
1654 * signatures) with the same name, skip to the next shader.
1655 */
1656 if (other == NULL)
1657 continue;
1658
Matt Turner4d784462014-06-24 21:34:05 -07001659 foreach_in_list(ir_function_signature, sig, &f->signatures) {
Kenneth Graunke4b0bac02013-08-30 16:12:55 -07001660 if (!sig->is_defined || sig->is_builtin())
Ian Romanick13f782c2010-06-29 18:53:38 -07001661 continue;
1662
1663 ir_function_signature *other_sig =
Kenneth Graunke3e820e32013-08-30 23:11:55 -07001664 other->exact_matching_signature(NULL, &sig->parameters);
Ian Romanick13f782c2010-06-29 18:53:38 -07001665
1666 if ((other_sig != NULL) && other_sig->is_defined
Kenneth Graunke4b0bac02013-08-30 16:12:55 -07001667 && !other_sig->is_builtin()) {
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07001668 linker_error(prog, "function `%s' is multiply defined\n",
Ian Romanick586e7412011-07-28 14:04:09 -07001669 f->name);
Ian Romanick13f782c2010-06-29 18:53:38 -07001670 return NULL;
1671 }
1672 }
1673 }
1674 }
1675 }
1676
1677 /* Find the shader that defines main, and make a clone of it.
1678 *
1679 * Starting with the clone, search for undefined references. If one is
1680 * found, find the shader that defines it. Clone the reference and add
1681 * it to the shader. Repeat until there are no undefined references or
1682 * until a reference cannot be resolved.
1683 */
Ian Romanick15ce87e2010-07-09 15:28:22 -07001684 gl_shader *main = NULL;
1685 for (unsigned i = 0; i < num_shaders; i++) {
Ian Romanick04d33232014-06-19 12:05:20 -07001686 if (link_get_main_function_signature(shader_list[i]) != NULL) {
Ian Romanick15ce87e2010-07-09 15:28:22 -07001687 main = shader_list[i];
1688 break;
1689 }
1690 }
Ian Romanick13f782c2010-06-29 18:53:38 -07001691
Ian Romanick15ce87e2010-07-09 15:28:22 -07001692 if (main == NULL) {
Ian Romanick586e7412011-07-28 14:04:09 -07001693 linker_error(prog, "%s shader lacks `main'\n",
Paul Berrye3b86f02014-01-07 10:58:56 -08001694 _mesa_shader_stage_to_string(shader_list[0]->Stage));
Ian Romanick15ce87e2010-07-09 15:28:22 -07001695 return NULL;
1696 }
1697
Ian Romanick4a455952010-10-13 15:13:02 -07001698 gl_shader *linked = ctx->Driver.NewShader(NULL, 0, main->Type);
Ian Romanick15ce87e2010-07-09 15:28:22 -07001699 linked->ir = new(linked) exec_list;
Kenneth Graunke2da02e72010-11-17 11:03:57 -08001700 clone_ir_list(mem_ctx, linked->ir, main->ir);
Ian Romanick15ce87e2010-07-09 15:28:22 -07001701
Eric Anholtf609cf72012-04-27 13:52:56 -07001702 linked->UniformBlocks = uniform_blocks;
1703 linked->NumUniformBlocks = num_uniform_blocks;
1704 ralloc_steal(linked, linked->UniformBlocks);
1705
Anuj Phogat35f11e82014-02-05 15:01:58 -08001706 link_fs_input_layout_qualifiers(prog, linked, shader_list, num_shaders);
Eric Anholt6065a872013-06-12 18:12:40 -07001707 link_gs_inout_layout_qualifiers(prog, linked, shader_list, num_shaders);
Paul Berry28ce6042014-01-08 11:59:28 -08001708 link_cs_input_layout_qualifiers(prog, linked, shader_list, num_shaders);
Eric Anholt6065a872013-06-12 18:12:40 -07001709
Ian Romanick15ce87e2010-07-09 15:28:22 -07001710 populate_symbol_table(linked);
Ian Romanick13f782c2010-06-29 18:53:38 -07001711
Andres Gomezb0e0c262014-10-24 16:51:09 +03001712 /* The pointer to the main function in the final linked shader (i.e., the
Ian Romanick31a97862010-07-12 18:48:50 -07001713 * copy of the original shader that contained the main function).
1714 */
Ian Romanick04d33232014-06-19 12:05:20 -07001715 ir_function_signature *const main_sig =
1716 link_get_main_function_signature(linked);
Ian Romanick31a97862010-07-12 18:48:50 -07001717
1718 /* Move any instructions other than variable declarations or function
1719 * declarations into main.
1720 */
Ian Romanick9303e352010-07-19 12:33:54 -07001721 exec_node *insertion_point =
1722 move_non_declarations(linked->ir, (exec_node *) &main_sig->body, false,
1723 linked);
1724
Ian Romanick31a97862010-07-12 18:48:50 -07001725 for (unsigned i = 0; i < num_shaders; i++) {
Ian Romanick9303e352010-07-19 12:33:54 -07001726 if (shader_list[i] == main)
1727 continue;
1728
Ian Romanick31a97862010-07-12 18:48:50 -07001729 insertion_point = move_non_declarations(shader_list[i]->ir,
Ian Romanick9303e352010-07-19 12:33:54 -07001730 insertion_point, true, linked);
Ian Romanick31a97862010-07-12 18:48:50 -07001731 }
1732
Kenneth Graunke5b331f62013-11-23 12:11:34 -08001733 /* Check if any shader needs built-in functions. */
1734 bool need_builtins = false;
Ian Romanickd5be2ac2010-07-20 11:29:46 -07001735 for (unsigned i = 0; i < num_shaders; i++) {
Kenneth Graunke5b331f62013-11-23 12:11:34 -08001736 if (shader_list[i]->uses_builtin_functions) {
1737 need_builtins = true;
1738 break;
1739 }
Ian Romanickd5be2ac2010-07-20 11:29:46 -07001740 }
1741
Kenneth Graunke5b331f62013-11-23 12:11:34 -08001742 bool ok;
1743 if (need_builtins) {
1744 /* Make a temporary array one larger than shader_list, which will hold
1745 * the built-in function shader as well.
1746 */
1747 gl_shader **linking_shaders = (gl_shader **)
1748 calloc(num_shaders + 1, sizeof(gl_shader *));
Ian Romanickd5be2ac2010-07-20 11:29:46 -07001749
Juha-Pekka Heikkilad2f04422014-05-07 16:20:12 +03001750 ok = linking_shaders != NULL;
Kenneth Graunke5b331f62013-11-23 12:11:34 -08001751
Juha-Pekka Heikkilad2f04422014-05-07 16:20:12 +03001752 if (ok) {
1753 memcpy(linking_shaders, shader_list, num_shaders * sizeof(gl_shader *));
1754 linking_shaders[num_shaders] = _mesa_glsl_get_builtin_function_shader();
1755
1756 ok = link_function_calls(prog, linked, linking_shaders, num_shaders + 1);
1757
1758 free(linking_shaders);
1759 } else {
1760 _mesa_error_no_memory(__func__);
1761 }
Kenneth Graunke5b331f62013-11-23 12:11:34 -08001762 } else {
1763 ok = link_function_calls(prog, linked, shader_list, num_shaders);
1764 }
1765
1766
1767 if (!ok) {
1768 ctx->Driver.DeleteShader(ctx, linked);
Kenneth Graunke7d2423a2013-08-02 00:35:05 -07001769 return NULL;
Ian Romanick4a455952010-10-13 15:13:02 -07001770 }
Ian Romanickd5be2ac2010-07-20 11:29:46 -07001771
Paul Berryc148ef62011-08-03 15:37:01 -07001772 /* At this point linked should contain all of the linked IR, so
1773 * validate it to make sure nothing went wrong.
1774 */
Kenneth Graunke7d2423a2013-08-02 00:35:05 -07001775 validate_ir_tree(linked->ir);
Paul Berryc148ef62011-08-03 15:37:01 -07001776
Paul Berry7cfefe62013-07-30 21:13:48 -07001777 /* Set the size of geometry shader input arrays */
Paul Berrye3b86f02014-01-07 10:58:56 -08001778 if (linked->Stage == MESA_SHADER_GEOMETRY) {
Paul Berry7cfefe62013-07-30 21:13:48 -07001779 unsigned num_vertices = vertices_per_prim(prog->Geom.InputType);
1780 geom_array_resize_visitor input_resize_visitor(num_vertices, prog);
Matt Turner4d784462014-06-24 21:34:05 -07001781 foreach_in_list(ir_instruction, ir, linked->ir) {
Paul Berry7cfefe62013-07-30 21:13:48 -07001782 ir->accept(&input_resize_visitor);
1783 }
1784 }
1785
Ian Romanickec08b5e2014-06-19 12:06:42 -07001786 if (ctx->Const.VertexID_is_zero_based)
1787 lower_vertex_id(linked);
1788
Ian Romanickc87e9ef2011-01-25 12:04:08 -08001789 /* Make a pass over all variable declarations to ensure that arrays with
Ian Romanick6f539212010-12-07 18:30:33 -08001790 * unspecified sizes have a size specified. The size is inferred from the
1791 * max_array_access field.
1792 */
Kenneth Graunke7d2423a2013-08-02 00:35:05 -07001793 array_sizing_visitor v;
1794 v.run(linked->ir);
Paul Berry15e05b92013-09-25 14:07:37 -07001795 v.fixup_unnamed_interface_types();
Ian Romanick6f539212010-12-07 18:30:33 -08001796
Ian Romanick3fb87872010-07-09 14:09:34 -07001797 return linked;
1798}
1799
Eric Anholta721abf2010-08-23 10:32:01 -07001800/**
1801 * Update the sizes of linked shader uniform arrays to the maximum
1802 * array index used.
1803 *
1804 * From page 81 (page 95 of the PDF) of the OpenGL 2.1 spec:
1805 *
1806 * If one or more elements of an array are active,
1807 * GetActiveUniform will return the name of the array in name,
1808 * subject to the restrictions listed above. The type of the array
1809 * is returned in type. The size parameter contains the highest
1810 * array element index used, plus one. The compiler or linker
1811 * determines the highest index used. There will be only one
1812 * active uniform reported by the GL per uniform array.
1813
1814 */
1815static void
Eric Anholt586b4b52010-09-28 14:32:16 -07001816update_array_sizes(struct gl_shader_program *prog)
Eric Anholta721abf2010-08-23 10:32:01 -07001817{
Paul Berry665b8d72014-01-07 10:11:39 -08001818 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Ian Romanick3322fba2010-10-14 13:28:42 -07001819 if (prog->_LinkedShaders[i] == NULL)
1820 continue;
1821
Matt Turner4d784462014-06-24 21:34:05 -07001822 foreach_in_list(ir_instruction, node, prog->_LinkedShaders[i]->ir) {
1823 ir_variable *const var = node->as_variable();
Eric Anholta721abf2010-08-23 10:32:01 -07001824
Tapani Pälli33ee2c62013-12-12 13:51:01 +02001825 if ((var == NULL) || (var->data.mode != ir_var_uniform) ||
Eric Anholta721abf2010-08-23 10:32:01 -07001826 !var->type->is_array())
1827 continue;
1828
Eric Anholt9feb4032012-05-01 14:43:31 -07001829 /* GL_ARB_uniform_buffer_object says that std140 uniforms
1830 * will not be eliminated. Since we always do std140, just
1831 * don't resize arrays in UBOs.
Francisco Jerez5c114932013-09-11 12:14:46 -07001832 *
1833 * Atomic counters are supposed to get deterministic
1834 * locations assigned based on the declaration ordering and
1835 * sizes, array compaction would mess that up.
Eric Anholt9feb4032012-05-01 14:43:31 -07001836 */
Francisco Jerez5c114932013-09-11 12:14:46 -07001837 if (var->is_in_uniform_block() || var->type->contains_atomic())
Eric Anholt9feb4032012-05-01 14:43:31 -07001838 continue;
1839
Tapani Pälli447bb902013-12-12 15:08:59 +02001840 unsigned int size = var->data.max_array_access;
Paul Berry665b8d72014-01-07 10:11:39 -08001841 for (unsigned j = 0; j < MESA_SHADER_STAGES; j++) {
Ian Romanick3322fba2010-10-14 13:28:42 -07001842 if (prog->_LinkedShaders[j] == NULL)
1843 continue;
1844
Matt Turner4d784462014-06-24 21:34:05 -07001845 foreach_in_list(ir_instruction, node2, prog->_LinkedShaders[j]->ir) {
1846 ir_variable *other_var = node2->as_variable();
Eric Anholta721abf2010-08-23 10:32:01 -07001847 if (!other_var)
1848 continue;
1849
1850 if (strcmp(var->name, other_var->name) == 0 &&
Tapani Pälli447bb902013-12-12 15:08:59 +02001851 other_var->data.max_array_access > size) {
1852 size = other_var->data.max_array_access;
Eric Anholta721abf2010-08-23 10:32:01 -07001853 }
1854 }
1855 }
Eric Anholt586b4b52010-09-28 14:32:16 -07001856
Fabian Bieler63684782013-06-14 13:37:07 +02001857 if (size + 1 != var->type->length) {
Ian Romanick89d81ab2011-01-25 10:41:20 -08001858 /* If this is a built-in uniform (i.e., it's backed by some
1859 * fixed-function state), adjust the number of state slots to
1860 * match the new array size. The number of slots per array entry
Bryan Cainf18a0862011-04-23 19:29:15 -05001861 * is not known. It seems safe to assume that the total number of
Ian Romanick89d81ab2011-01-25 10:41:20 -08001862 * slots is an integer multiple of the number of array elements.
1863 * Determine the number of slots per array element by dividing by
1864 * the old (total) size.
1865 */
Ian Romanick5aa8d812014-05-14 19:47:28 -07001866 const unsigned num_slots = var->get_num_state_slots();
1867 if (num_slots > 0) {
1868 var->set_num_state_slots((size + 1)
1869 * (num_slots / var->type->length));
Ian Romanick89d81ab2011-01-25 10:41:20 -08001870 }
1871
Eric Anholta721abf2010-08-23 10:32:01 -07001872 var->type = glsl_type::get_array_instance(var->type->fields.array,
1873 size + 1);
1874 /* FINISHME: We should update the types of array
1875 * dereferences of this variable now.
1876 */
1877 }
1878 }
1879 }
1880}
1881
Ian Romanick69846702010-06-22 17:29:19 -07001882/**
Bryan Cainf18a0862011-04-23 19:29:15 -05001883 * Find a contiguous set of available bits in a bitmask.
Ian Romanick69846702010-06-22 17:29:19 -07001884 *
1885 * \param used_mask Bits representing used (1) and unused (0) locations
1886 * \param needed_count Number of contiguous bits needed.
1887 *
1888 * \return
1889 * Base location of the available bits on success or -1 on failure.
1890 */
1891int
1892find_available_slots(unsigned used_mask, unsigned needed_count)
1893{
1894 unsigned needed_mask = (1 << needed_count) - 1;
1895 const int max_bit_to_test = (8 * sizeof(used_mask)) - needed_count;
1896
1897 /* The comparison to 32 is redundant, but without it GCC emits "warning:
1898 * cannot optimize possibly infinite loops" for the loop below.
1899 */
1900 if ((needed_count == 0) || (max_bit_to_test < 0) || (max_bit_to_test > 32))
1901 return -1;
1902
1903 for (int i = 0; i <= max_bit_to_test; i++) {
1904 if ((needed_mask & ~used_mask) == needed_mask)
1905 return i;
1906
1907 needed_mask <<= 1;
1908 }
1909
1910 return -1;
1911}
1912
1913
Ian Romanickd32d4f72011-06-27 17:59:58 -07001914/**
Andres Gomezb0e0c262014-10-24 16:51:09 +03001915 * Assign locations for either VS inputs or FS outputs
Ian Romanickd32d4f72011-06-27 17:59:58 -07001916 *
1917 * \param prog Shader program whose variables need locations assigned
1918 * \param target_index Selector for the program target to receive location
1919 * assignmnets. Must be either \c MESA_SHADER_VERTEX or
1920 * \c MESA_SHADER_FRAGMENT.
1921 * \param max_index Maximum number of generic locations. This corresponds
1922 * to either the maximum number of draw buffers or the
1923 * maximum number of generic attributes.
1924 *
1925 * \return
1926 * If locations are successfully assigned, true is returned. Otherwise an
1927 * error is emitted to the shader link log and false is returned.
Ian Romanickd32d4f72011-06-27 17:59:58 -07001928 */
Ian Romanick69846702010-06-22 17:29:19 -07001929bool
Ian Romanickd32d4f72011-06-27 17:59:58 -07001930assign_attribute_or_color_locations(gl_shader_program *prog,
1931 unsigned target_index,
1932 unsigned max_index)
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001933{
Ian Romanickd32d4f72011-06-27 17:59:58 -07001934 /* Mark invalid locations as being used.
Ian Romanick9342d262010-06-22 17:41:37 -07001935 */
Ian Romanickd32d4f72011-06-27 17:59:58 -07001936 unsigned used_locations = (max_index >= 32)
1937 ? ~0 : ~((1 << max_index) - 1);
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001938
Ian Romanickd32d4f72011-06-27 17:59:58 -07001939 assert((target_index == MESA_SHADER_VERTEX)
1940 || (target_index == MESA_SHADER_FRAGMENT));
1941
1942 gl_shader *const sh = prog->_LinkedShaders[target_index];
1943 if (sh == NULL)
1944 return true;
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001945
Ian Romanick69846702010-06-22 17:29:19 -07001946 /* Operate in a total of four passes.
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001947 *
1948 * 1. Invalidate the location assignments for all vertex shader inputs.
1949 *
1950 * 2. Assign locations for inputs that have user-defined (via
Ian Romanickb12b5d92011-11-04 16:08:52 -07001951 * glBindVertexAttribLocation) locations and outputs that have
1952 * user-defined locations (via glBindFragDataLocation).
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001953 *
Ian Romanick69846702010-06-22 17:29:19 -07001954 * 3. Sort the attributes without assigned locations by number of slots
1955 * required in decreasing order. Fragmentation caused by attribute
1956 * locations assigned by the application may prevent large attributes
1957 * from having enough contiguous space.
1958 *
1959 * 4. Assign locations to any inputs without assigned locations.
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001960 */
1961
Ian Romanickd32d4f72011-06-27 17:59:58 -07001962 const int generic_base = (target_index == MESA_SHADER_VERTEX)
Brian Paul7eb7d672011-07-07 16:47:59 -06001963 ? (int) VERT_ATTRIB_GENERIC0 : (int) FRAG_RESULT_DATA0;
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001964
Ian Romanickd32d4f72011-06-27 17:59:58 -07001965 const enum ir_variable_mode direction =
Paul Berry42a29d82013-01-11 14:39:32 -08001966 (target_index == MESA_SHADER_VERTEX)
1967 ? ir_var_shader_in : ir_var_shader_out;
Ian Romanickd32d4f72011-06-27 17:59:58 -07001968
1969
Ian Romanick69846702010-06-22 17:29:19 -07001970 /* Temporary storage for the set of attributes that need locations assigned.
1971 */
1972 struct temp_attr {
1973 unsigned slots;
1974 ir_variable *var;
1975
1976 /* Used below in the call to qsort. */
1977 static int compare(const void *a, const void *b)
1978 {
1979 const temp_attr *const l = (const temp_attr *) a;
1980 const temp_attr *const r = (const temp_attr *) b;
1981
1982 /* Reversed because we want a descending order sort below. */
1983 return r->slots - l->slots;
1984 }
1985 } to_assign[16];
1986
1987 unsigned num_attr = 0;
1988
Matt Turner4d784462014-06-24 21:34:05 -07001989 foreach_in_list(ir_instruction, node, sh->ir) {
1990 ir_variable *const var = node->as_variable();
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001991
Tapani Pälli33ee2c62013-12-12 13:51:01 +02001992 if ((var == NULL) || (var->data.mode != (unsigned) direction))
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001993 continue;
1994
Tapani Pälli447bb902013-12-12 15:08:59 +02001995 if (var->data.explicit_location) {
1996 if ((var->data.location >= (int)(max_index + generic_base))
1997 || (var->data.location < 0)) {
Ian Romanick586e7412011-07-28 14:04:09 -07001998 linker_error(prog,
1999 "invalid explicit location %d specified for `%s'\n",
Tapani Pälli447bb902013-12-12 15:08:59 +02002000 (var->data.location < 0)
2001 ? var->data.location
2002 : var->data.location - generic_base,
Ian Romanick586e7412011-07-28 14:04:09 -07002003 var->name);
Ian Romanick68a4fc92010-10-07 17:21:22 -07002004 return false;
Ian Romanick523b6112011-08-17 15:40:03 -07002005 }
2006 } else if (target_index == MESA_SHADER_VERTEX) {
2007 unsigned binding;
2008
2009 if (prog->AttributeBindings->get(binding, var->name)) {
2010 assert(binding >= VERT_ATTRIB_GENERIC0);
Tapani Pälli447bb902013-12-12 15:08:59 +02002011 var->data.location = binding;
2012 var->data.is_unmatched_generic_inout = 0;
Ian Romanick68a4fc92010-10-07 17:21:22 -07002013 }
Ian Romanickb12b5d92011-11-04 16:08:52 -07002014 } else if (target_index == MESA_SHADER_FRAGMENT) {
2015 unsigned binding;
Dave Airlie1256a5d2012-03-24 13:33:41 +00002016 unsigned index;
Ian Romanickb12b5d92011-11-04 16:08:52 -07002017
2018 if (prog->FragDataBindings->get(binding, var->name)) {
2019 assert(binding >= FRAG_RESULT_DATA0);
Tapani Pälli447bb902013-12-12 15:08:59 +02002020 var->data.location = binding;
2021 var->data.is_unmatched_generic_inout = 0;
Dave Airlie1256a5d2012-03-24 13:33:41 +00002022
2023 if (prog->FragDataIndexBindings->get(index, var->name)) {
Tapani Pälli447bb902013-12-12 15:08:59 +02002024 var->data.index = index;
Dave Airlie1256a5d2012-03-24 13:33:41 +00002025 }
Ian Romanickb12b5d92011-11-04 16:08:52 -07002026 }
Ian Romanick68a4fc92010-10-07 17:21:22 -07002027 }
2028
Ian Romanick9f0e98d2011-10-06 10:25:34 -07002029 /* If the variable is not a built-in and has a location statically
2030 * assigned in the shader (presumably via a layout qualifier), make sure
2031 * that it doesn't collide with other assigned locations. Otherwise,
2032 * add it to the list of variables that need linker-assigned locations.
Ian Romanick0ad22cd2010-06-21 17:18:31 -07002033 */
Paul Berry0026ad42013-07-31 08:15:08 -07002034 const unsigned slots = var->type->count_attribute_slots();
Tapani Pälli447bb902013-12-12 15:08:59 +02002035 if (var->data.location != -1) {
2036 if (var->data.location >= generic_base && var->data.index < 1) {
Ian Romanick523b6112011-08-17 15:40:03 -07002037 /* From page 61 of the OpenGL 4.0 spec:
2038 *
2039 * "LinkProgram will fail if the attribute bindings assigned
2040 * by BindAttribLocation do not leave not enough space to
2041 * assign a location for an active matrix attribute or an
2042 * active attribute array, both of which require multiple
2043 * contiguous generic attributes."
2044 *
Anuj Phogat8c61b6a2014-03-04 17:03:28 -08002045 * I think above text prohibits the aliasing of explicit and
2046 * automatic assignments. But, aliasing is allowed in manual
2047 * assignments of attribute locations. See below comments for
2048 * the details.
Ian Romanick523b6112011-08-17 15:40:03 -07002049 *
Anuj Phogat8c61b6a2014-03-04 17:03:28 -08002050 * From OpenGL 4.0 spec, page 61:
Ian Romanick523b6112011-08-17 15:40:03 -07002051 *
2052 * "It is possible for an application to bind more than one
2053 * attribute name to the same location. This is referred to as
2054 * aliasing. This will only work if only one of the aliased
2055 * attributes is active in the executable program, or if no
2056 * path through the shader consumes more than one attribute of
2057 * a set of attributes aliased to the same location. A link
2058 * error can occur if the linker determines that every path
2059 * through the shader consumes multiple aliased attributes,
2060 * but implementations are not required to generate an error
2061 * in this case."
2062 *
Anuj Phogat8c61b6a2014-03-04 17:03:28 -08002063 * From GLSL 4.30 spec, page 54:
2064 *
2065 * "A program will fail to link if any two non-vertex shader
2066 * input variables are assigned to the same location. For
2067 * vertex shaders, multiple input variables may be assigned
2068 * to the same location using either layout qualifiers or via
2069 * the OpenGL API. However, such aliasing is intended only to
2070 * support vertex shaders where each execution path accesses
2071 * at most one input per each location. Implementations are
2072 * permitted, but not required, to generate link-time errors
2073 * if they detect that every path through the vertex shader
2074 * executable accesses multiple inputs assigned to any single
2075 * location. For all shader types, a program will fail to link
2076 * if explicit location assignments leave the linker unable
2077 * to find space for other variables without explicit
2078 * assignments."
2079 *
2080 * From OpenGL ES 3.0 spec, page 56:
2081 *
2082 * "Binding more than one attribute name to the same location
2083 * is referred to as aliasing, and is not permitted in OpenGL
2084 * ES Shading Language 3.00 vertex shaders. LinkProgram will
2085 * fail when this condition exists. However, aliasing is
2086 * possible in OpenGL ES Shading Language 1.00 vertex shaders.
2087 * This will only work if only one of the aliased attributes
2088 * is active in the executable program, or if no path through
2089 * the shader consumes more than one attribute of a set of
2090 * attributes aliased to the same location. A link error can
2091 * occur if the linker determines that every path through the
2092 * shader consumes multiple aliased attributes, but implemen-
2093 * tations are not required to generate an error in this case."
2094 *
2095 * After looking at above references from OpenGL, OpenGL ES and
2096 * GLSL specifications, we allow aliasing of vertex input variables
2097 * in: OpenGL 2.0 (and above) and OpenGL ES 2.0.
2098 *
2099 * NOTE: This is not required by the spec but its worth mentioning
2100 * here that we're not doing anything to make sure that no path
2101 * through the vertex shader executable accesses multiple inputs
2102 * assigned to any single location.
Ian Romanick523b6112011-08-17 15:40:03 -07002103 */
Anuj Phogat8c61b6a2014-03-04 17:03:28 -08002104
Ian Romanick523b6112011-08-17 15:40:03 -07002105 /* Mask representing the contiguous slots that will be used by
2106 * this attribute.
2107 */
Tapani Pälli447bb902013-12-12 15:08:59 +02002108 const unsigned attr = var->data.location - generic_base;
Ian Romanick523b6112011-08-17 15:40:03 -07002109 const unsigned use_mask = (1 << slots) - 1;
Anuj Phogat8c61b6a2014-03-04 17:03:28 -08002110 const char *const string = (target_index == MESA_SHADER_VERTEX)
2111 ? "vertex shader input" : "fragment shader output";
2112
2113 /* Generate a link error if the requested locations for this
2114 * attribute exceed the maximum allowed attribute location.
2115 */
2116 if (attr + slots > max_index) {
2117 linker_error(prog,
2118 "insufficient contiguous locations "
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002119 "available for %s `%s' %d %d %d\n", string,
Anuj Phogat8c61b6a2014-03-04 17:03:28 -08002120 var->name, used_locations, use_mask, attr);
2121 return false;
2122 }
Ian Romanick0ad22cd2010-06-21 17:18:31 -07002123
Ian Romanick523b6112011-08-17 15:40:03 -07002124 /* Generate a link error if the set of bits requested for this
2125 * attribute overlaps any previously allocated bits.
2126 */
2127 if ((~(use_mask << attr) & used_locations) != used_locations) {
Anuj Phogat8c61b6a2014-03-04 17:03:28 -08002128 if (target_index == MESA_SHADER_FRAGMENT ||
2129 (prog->IsES && prog->Version >= 300)) {
2130 linker_error(prog,
2131 "overlapping location is assigned "
2132 "to %s `%s' %d %d %d\n", string,
2133 var->name, used_locations, use_mask, attr);
2134 return false;
2135 } else {
2136 linker_warning(prog,
2137 "overlapping location is assigned "
2138 "to %s `%s' %d %d %d\n", string,
2139 var->name, used_locations, use_mask, attr);
2140 }
Ian Romanick523b6112011-08-17 15:40:03 -07002141 }
2142
2143 used_locations |= (use_mask << attr);
2144 }
2145
2146 continue;
2147 }
2148
2149 to_assign[num_attr].slots = slots;
Ian Romanick69846702010-06-22 17:29:19 -07002150 to_assign[num_attr].var = var;
2151 num_attr++;
Ian Romanick0ad22cd2010-06-21 17:18:31 -07002152 }
Ian Romanick69846702010-06-22 17:29:19 -07002153
2154 /* If all of the attributes were assigned locations by the application (or
2155 * are built-in attributes with fixed locations), return early. This should
2156 * be the common case.
2157 */
2158 if (num_attr == 0)
2159 return true;
2160
2161 qsort(to_assign, num_attr, sizeof(to_assign[0]), temp_attr::compare);
2162
Ian Romanickd32d4f72011-06-27 17:59:58 -07002163 if (target_index == MESA_SHADER_VERTEX) {
2164 /* VERT_ATTRIB_GENERIC0 is a pseudo-alias for VERT_ATTRIB_POS. It can
2165 * only be explicitly assigned by via glBindAttribLocation. Mark it as
2166 * reserved to prevent it from being automatically allocated below.
2167 */
2168 find_deref_visitor find("gl_Vertex");
2169 find.run(sh->ir);
2170 if (find.variable_found())
2171 used_locations |= (1 << 0);
2172 }
Ian Romanick982e3792010-06-29 18:58:20 -07002173
Ian Romanick69846702010-06-22 17:29:19 -07002174 for (unsigned i = 0; i < num_attr; i++) {
2175 /* Mask representing the contiguous slots that will be used by this
2176 * attribute.
2177 */
2178 const unsigned use_mask = (1 << to_assign[i].slots) - 1;
2179
2180 int location = find_available_slots(used_locations, to_assign[i].slots);
2181
2182 if (location < 0) {
Ian Romanickd32d4f72011-06-27 17:59:58 -07002183 const char *const string = (target_index == MESA_SHADER_VERTEX)
2184 ? "vertex shader input" : "fragment shader output";
2185
Ian Romanick586e7412011-07-28 14:04:09 -07002186 linker_error(prog,
Dave Airlie7449ae42011-11-20 19:56:35 +00002187 "insufficient contiguous locations "
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002188 "available for %s `%s'\n",
Ian Romanick586e7412011-07-28 14:04:09 -07002189 string, to_assign[i].var->name);
Ian Romanick69846702010-06-22 17:29:19 -07002190 return false;
2191 }
2192
Tapani Pälli447bb902013-12-12 15:08:59 +02002193 to_assign[i].var->data.location = generic_base + location;
2194 to_assign[i].var->data.is_unmatched_generic_inout = 0;
Ian Romanick69846702010-06-22 17:29:19 -07002195 used_locations |= (use_mask << location);
2196 }
2197
2198 return true;
Ian Romanick0ad22cd2010-06-21 17:18:31 -07002199}
2200
2201
Ian Romanick40e114b2010-08-17 14:55:50 -07002202/**
Ian Romanickcc90e622010-10-19 17:59:10 -07002203 * Demote shader inputs and outputs that are not used in other stages
Ian Romanick40e114b2010-08-17 14:55:50 -07002204 */
2205void
Ian Romanickcc90e622010-10-19 17:59:10 -07002206demote_shader_inputs_and_outputs(gl_shader *sh, enum ir_variable_mode mode)
Ian Romanick40e114b2010-08-17 14:55:50 -07002207{
Matt Turner4d784462014-06-24 21:34:05 -07002208 foreach_in_list(ir_instruction, node, sh->ir) {
2209 ir_variable *const var = node->as_variable();
Ian Romanick40e114b2010-08-17 14:55:50 -07002210
Tapani Pälli33ee2c62013-12-12 13:51:01 +02002211 if ((var == NULL) || (var->data.mode != int(mode)))
Ian Romanick40e114b2010-08-17 14:55:50 -07002212 continue;
2213
Ian Romanickcc90e622010-10-19 17:59:10 -07002214 /* A shader 'in' or 'out' variable is only really an input or output if
2215 * its value is used by other shader stages. This will cause the variable
2216 * to have a location assigned.
Ian Romanick40e114b2010-08-17 14:55:50 -07002217 */
Tapani Pälli447bb902013-12-12 15:08:59 +02002218 if (var->data.is_unmatched_generic_inout) {
Ian Romanicka9948242014-07-08 18:53:09 -07002219 assert(var->data.mode != ir_var_temporary);
Tapani Pälli33ee2c62013-12-12 13:51:01 +02002220 var->data.mode = ir_var_auto;
Ian Romanick40e114b2010-08-17 14:55:50 -07002221 }
2222 }
2223}
2224
2225
Paul Berry871ddb92011-11-05 11:17:32 -07002226/**
Marek Olšákec174a42011-11-18 15:00:10 +01002227 * Store the gl_FragDepth layout in the gl_shader_program struct.
2228 */
2229static void
2230store_fragdepth_layout(struct gl_shader_program *prog)
2231{
2232 if (prog->_LinkedShaders[MESA_SHADER_FRAGMENT] == NULL) {
2233 return;
2234 }
2235
2236 struct exec_list *ir = prog->_LinkedShaders[MESA_SHADER_FRAGMENT]->ir;
2237
2238 /* We don't look up the gl_FragDepth symbol directly because if
2239 * gl_FragDepth is not used in the shader, it's removed from the IR.
2240 * However, the symbol won't be removed from the symbol table.
2241 *
2242 * We're only interested in the cases where the variable is NOT removed
2243 * from the IR.
2244 */
Matt Turner4d784462014-06-24 21:34:05 -07002245 foreach_in_list(ir_instruction, node, ir) {
2246 ir_variable *const var = node->as_variable();
Marek Olšákec174a42011-11-18 15:00:10 +01002247
Tapani Pälli33ee2c62013-12-12 13:51:01 +02002248 if (var == NULL || var->data.mode != ir_var_shader_out) {
Marek Olšákec174a42011-11-18 15:00:10 +01002249 continue;
2250 }
2251
2252 if (strcmp(var->name, "gl_FragDepth") == 0) {
Tapani Pälli447bb902013-12-12 15:08:59 +02002253 switch (var->data.depth_layout) {
Marek Olšákec174a42011-11-18 15:00:10 +01002254 case ir_depth_layout_none:
2255 prog->FragDepthLayout = FRAG_DEPTH_LAYOUT_NONE;
2256 return;
2257 case ir_depth_layout_any:
2258 prog->FragDepthLayout = FRAG_DEPTH_LAYOUT_ANY;
2259 return;
2260 case ir_depth_layout_greater:
2261 prog->FragDepthLayout = FRAG_DEPTH_LAYOUT_GREATER;
2262 return;
2263 case ir_depth_layout_less:
2264 prog->FragDepthLayout = FRAG_DEPTH_LAYOUT_LESS;
2265 return;
2266 case ir_depth_layout_unchanged:
2267 prog->FragDepthLayout = FRAG_DEPTH_LAYOUT_UNCHANGED;
2268 return;
2269 default:
2270 assert(0);
2271 return;
2272 }
2273 }
2274 }
2275}
2276
2277/**
Ian Romanick92f81592011-11-08 12:37:19 -08002278 * Validate the resources used by a program versus the implementation limits
2279 */
Paul Berryb95d2372013-07-27 11:08:31 -07002280static void
Ian Romanick92f81592011-11-08 12:37:19 -08002281check_resources(struct gl_context *ctx, struct gl_shader_program *prog)
2282{
Paul Berry665b8d72014-01-07 10:11:39 -08002283 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Ian Romanick92f81592011-11-08 12:37:19 -08002284 struct gl_shader *sh = prog->_LinkedShaders[i];
2285
2286 if (sh == NULL)
2287 continue;
2288
Paul Berrybce8bc02014-01-08 10:17:01 -08002289 if (sh->num_samplers > ctx->Const.Program[i].MaxTextureImageUnits) {
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002290 linker_error(prog, "Too many %s shader texture samplers\n",
Paul Berry665b8d72014-01-07 10:11:39 -08002291 _mesa_shader_stage_to_string(i));
Ian Romanick92f81592011-11-08 12:37:19 -08002292 }
2293
Paul Berrybce8bc02014-01-08 10:17:01 -08002294 if (sh->num_uniform_components >
2295 ctx->Const.Program[i].MaxUniformComponents) {
Eric Anholt38e77e52013-05-23 11:10:15 -07002296 if (ctx->Const.GLSLSkipStrictMaxUniformLimitCheck) {
2297 linker_warning(prog, "Too many %s shader default uniform block "
2298 "components, but the driver will try to optimize "
2299 "them out; this is non-portable out-of-spec "
2300 "behavior\n",
Paul Berry665b8d72014-01-07 10:11:39 -08002301 _mesa_shader_stage_to_string(i));
Eric Anholt38e77e52013-05-23 11:10:15 -07002302 } else {
2303 linker_error(prog, "Too many %s shader default uniform block "
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002304 "components\n",
Paul Berry665b8d72014-01-07 10:11:39 -08002305 _mesa_shader_stage_to_string(i));
Eric Anholt38e77e52013-05-23 11:10:15 -07002306 }
2307 }
2308
2309 if (sh->num_combined_uniform_components >
Paul Berrybce8bc02014-01-08 10:17:01 -08002310 ctx->Const.Program[i].MaxCombinedUniformComponents) {
Marek Olšákdf809ae2011-12-10 04:14:46 +01002311 if (ctx->Const.GLSLSkipStrictMaxUniformLimitCheck) {
2312 linker_warning(prog, "Too many %s shader uniform components, "
2313 "but the driver will try to optimize them out; "
2314 "this is non-portable out-of-spec behavior\n",
Paul Berry665b8d72014-01-07 10:11:39 -08002315 _mesa_shader_stage_to_string(i));
Marek Olšákdf809ae2011-12-10 04:14:46 +01002316 } else {
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002317 linker_error(prog, "Too many %s shader uniform components\n",
Paul Berry665b8d72014-01-07 10:11:39 -08002318 _mesa_shader_stage_to_string(i));
Marek Olšákdf809ae2011-12-10 04:14:46 +01002319 }
Ian Romanick92f81592011-11-08 12:37:19 -08002320 }
2321 }
2322
Paul Berry665b8d72014-01-07 10:11:39 -08002323 unsigned blocks[MESA_SHADER_STAGES] = {0};
Eric Anholt877a8972012-06-25 12:47:01 -07002324 unsigned total_uniform_blocks = 0;
2325
2326 for (unsigned i = 0; i < prog->NumUniformBlocks; i++) {
Paul Berry665b8d72014-01-07 10:11:39 -08002327 for (unsigned j = 0; j < MESA_SHADER_STAGES; j++) {
Eric Anholt877a8972012-06-25 12:47:01 -07002328 if (prog->UniformBlockStageIndex[j][i] != -1) {
2329 blocks[j]++;
2330 total_uniform_blocks++;
2331 }
2332 }
2333
2334 if (total_uniform_blocks > ctx->Const.MaxCombinedUniformBlocks) {
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002335 linker_error(prog, "Too many combined uniform blocks (%d/%d)\n",
Eric Anholt877a8972012-06-25 12:47:01 -07002336 prog->NumUniformBlocks,
2337 ctx->Const.MaxCombinedUniformBlocks);
2338 } else {
Paul Berry665b8d72014-01-07 10:11:39 -08002339 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Paul Berrybce8bc02014-01-08 10:17:01 -08002340 const unsigned max_uniform_blocks =
2341 ctx->Const.Program[i].MaxUniformBlocks;
2342 if (blocks[i] > max_uniform_blocks) {
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002343 linker_error(prog, "Too many %s uniform blocks (%d/%d)\n",
Paul Berry665b8d72014-01-07 10:11:39 -08002344 _mesa_shader_stage_to_string(i),
Eric Anholt877a8972012-06-25 12:47:01 -07002345 blocks[i],
Paul Berrybce8bc02014-01-08 10:17:01 -08002346 max_uniform_blocks);
Eric Anholt877a8972012-06-25 12:47:01 -07002347 break;
2348 }
2349 }
2350 }
2351 }
Ian Romanick92f81592011-11-08 12:37:19 -08002352}
Paul Berry871ddb92011-11-05 11:17:32 -07002353
Francisco Jereze51158f2013-11-22 15:53:26 -08002354/**
2355 * Validate shader image resources.
2356 */
2357static void
2358check_image_resources(struct gl_context *ctx, struct gl_shader_program *prog)
2359{
2360 unsigned total_image_units = 0;
2361 unsigned fragment_outputs = 0;
2362
2363 if (!ctx->Extensions.ARB_shader_image_load_store)
2364 return;
2365
2366 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
2367 struct gl_shader *sh = prog->_LinkedShaders[i];
2368
2369 if (sh) {
2370 if (sh->NumImages > ctx->Const.Program[i].MaxImageUniforms)
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002371 linker_error(prog, "Too many %s shader image uniforms\n",
Francisco Jereze51158f2013-11-22 15:53:26 -08002372 _mesa_shader_stage_to_string(i));
2373
2374 total_image_units += sh->NumImages;
2375
2376 if (i == MESA_SHADER_FRAGMENT) {
Matt Turner4d784462014-06-24 21:34:05 -07002377 foreach_in_list(ir_instruction, node, sh->ir) {
2378 ir_variable *var = node->as_variable();
Francisco Jereze51158f2013-11-22 15:53:26 -08002379 if (var && var->data.mode == ir_var_shader_out)
2380 fragment_outputs += var->type->count_attribute_slots();
2381 }
2382 }
2383 }
2384 }
2385
2386 if (total_image_units > ctx->Const.MaxCombinedImageUniforms)
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002387 linker_error(prog, "Too many combined image uniforms\n");
Francisco Jereze51158f2013-11-22 15:53:26 -08002388
2389 if (total_image_units + fragment_outputs >
2390 ctx->Const.MaxCombinedImageUnitsAndFragmentOutputs)
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002391 linker_error(prog, "Too many combined image uniforms and fragment outputs\n");
Francisco Jereze51158f2013-11-22 15:53:26 -08002392}
2393
Tapani Pällieca9d162014-04-08 08:45:36 +03002394
2395/**
2396 * Initializes explicit location slots to INACTIVE_UNIFORM_EXPLICIT_LOCATION
2397 * for a variable, checks for overlaps between other uniforms using explicit
2398 * locations.
2399 */
2400static bool
2401reserve_explicit_locations(struct gl_shader_program *prog,
2402 string_to_uint_map *map, ir_variable *var)
2403{
2404 unsigned slots = var->type->uniform_locations();
2405 unsigned max_loc = var->data.location + slots - 1;
2406
2407 /* Resize remap table if locations do not fit in the current one. */
2408 if (max_loc + 1 > prog->NumUniformRemapTable) {
2409 prog->UniformRemapTable =
2410 reralloc(prog, prog->UniformRemapTable,
2411 gl_uniform_storage *,
2412 max_loc + 1);
2413
2414 if (!prog->UniformRemapTable) {
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002415 linker_error(prog, "Out of memory during linking.\n");
Tapani Pällieca9d162014-04-08 08:45:36 +03002416 return false;
2417 }
2418
2419 /* Initialize allocated space. */
2420 for (unsigned i = prog->NumUniformRemapTable; i < max_loc + 1; i++)
2421 prog->UniformRemapTable[i] = NULL;
2422
2423 prog->NumUniformRemapTable = max_loc + 1;
2424 }
2425
2426 for (unsigned i = 0; i < slots; i++) {
2427 unsigned loc = var->data.location + i;
2428
2429 /* Check if location is already used. */
2430 if (prog->UniformRemapTable[loc] == INACTIVE_UNIFORM_EXPLICIT_LOCATION) {
2431
2432 /* Possibly same uniform from a different stage, this is ok. */
2433 unsigned hash_loc;
2434 if (map->get(hash_loc, var->name) && hash_loc == loc - i)
2435 continue;
2436
2437 /* ARB_explicit_uniform_location specification states:
2438 *
2439 * "No two default-block uniform variables in the program can have
2440 * the same location, even if they are unused, otherwise a compiler
2441 * or linker error will be generated."
2442 */
2443 linker_error(prog,
Neil Roberts352f8f22014-11-13 15:31:44 +00002444 "location qualifier for uniform %s overlaps "
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002445 "previously used location\n",
Tapani Pällieca9d162014-04-08 08:45:36 +03002446 var->name);
2447 return false;
2448 }
2449
2450 /* Initialize location as inactive before optimization
2451 * rounds and location assignment.
2452 */
2453 prog->UniformRemapTable[loc] = INACTIVE_UNIFORM_EXPLICIT_LOCATION;
2454 }
2455
2456 /* Note, base location used for arrays. */
2457 map->put(var->data.location, var->name);
2458
2459 return true;
2460}
2461
2462/**
2463 * Check and reserve all explicit uniform locations, called before
2464 * any optimizations happen to handle also inactive uniforms and
2465 * inactive array elements that may get trimmed away.
2466 */
2467static void
2468check_explicit_uniform_locations(struct gl_context *ctx,
2469 struct gl_shader_program *prog)
2470{
2471 if (!ctx->Extensions.ARB_explicit_uniform_location)
2472 return;
2473
2474 /* This map is used to detect if overlapping explicit locations
2475 * occur with the same uniform (from different stage) or a different one.
2476 */
2477 string_to_uint_map *uniform_map = new string_to_uint_map;
2478
2479 if (!uniform_map) {
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002480 linker_error(prog, "Out of memory during linking.\n");
Tapani Pällieca9d162014-04-08 08:45:36 +03002481 return;
2482 }
2483
2484 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
2485 struct gl_shader *sh = prog->_LinkedShaders[i];
2486
2487 if (!sh)
2488 continue;
2489
Matt Turner4d784462014-06-24 21:34:05 -07002490 foreach_in_list(ir_instruction, node, sh->ir) {
2491 ir_variable *var = node->as_variable();
Tapani Pällieca9d162014-04-08 08:45:36 +03002492 if ((var && var->data.mode == ir_var_uniform) &&
2493 var->data.explicit_location) {
Dave Airlie2d5d1f52014-09-02 09:54:36 +10002494 if (!reserve_explicit_locations(prog, uniform_map, var)) {
2495 delete uniform_map;
Tapani Pällieca9d162014-04-08 08:45:36 +03002496 return;
Dave Airlie2d5d1f52014-09-02 09:54:36 +10002497 }
Tapani Pällieca9d162014-04-08 08:45:36 +03002498 }
2499 }
2500 }
2501
2502 delete uniform_map;
2503}
2504
Ian Romanick0e59b262010-06-23 11:23:01 -07002505void
Kristian Høgsbergf9995b32010-10-12 12:26:10 -04002506link_shaders(struct gl_context *ctx, struct gl_shader_program *prog)
Ian Romanick832dfa52010-06-17 15:04:20 -07002507{
Paul Berry871ddb92011-11-05 11:17:32 -07002508 tfeedback_decl *tfeedback_decls = NULL;
2509 unsigned num_tfeedback_decls = prog->TransformFeedback.NumVarying;
2510
Kenneth Graunked3073f52011-01-21 14:32:31 -08002511 void *mem_ctx = ralloc_context(NULL); // temporary linker context
Kenneth Graunke2da02e72010-11-17 11:03:57 -08002512
Paul Berryb95d2372013-07-27 11:08:31 -07002513 prog->LinkStatus = true; /* All error paths will set this to false */
Ian Romanick832dfa52010-06-17 15:04:20 -07002514 prog->Validated = false;
2515 prog->_Used = false;
2516
Anuj Phogat9bcb0a82014-02-10 14:12:40 -08002517 prog->ARB_fragment_coord_conventions_enable = false;
Francisco Jerez5c114932013-09-11 12:14:46 -07002518
Ian Romanick832dfa52010-06-17 15:04:20 -07002519 /* Separate the shaders into groups based on their type.
2520 */
Paul Berrycd18ba12014-01-07 08:56:57 -08002521 struct gl_shader **shader_list[MESA_SHADER_STAGES];
2522 unsigned num_shaders[MESA_SHADER_STAGES];
Ian Romanick832dfa52010-06-17 15:04:20 -07002523
Paul Berrycd18ba12014-01-07 08:56:57 -08002524 for (int i = 0; i < MESA_SHADER_STAGES; i++) {
2525 shader_list[i] = (struct gl_shader **)
2526 calloc(prog->NumShaders, sizeof(struct gl_shader *));
2527 num_shaders[i] = 0;
2528 }
Ian Romanick832dfa52010-06-17 15:04:20 -07002529
Ian Romanick25f51d32010-07-16 15:51:50 -07002530 unsigned min_version = UINT_MAX;
2531 unsigned max_version = 0;
Paul Berrya9f34dc2012-08-02 17:49:44 -07002532 const bool is_es_prog =
2533 (prog->NumShaders > 0 && prog->Shaders[0]->IsES) ? true : false;
Ian Romanick832dfa52010-06-17 15:04:20 -07002534 for (unsigned i = 0; i < prog->NumShaders; i++) {
Ian Romanick25f51d32010-07-16 15:51:50 -07002535 min_version = MIN2(min_version, prog->Shaders[i]->Version);
2536 max_version = MAX2(max_version, prog->Shaders[i]->Version);
2537
Paul Berrya9f34dc2012-08-02 17:49:44 -07002538 if (prog->Shaders[i]->IsES != is_es_prog) {
2539 linker_error(prog, "all shaders must use same shading "
2540 "language version\n");
2541 goto done;
2542 }
2543
Anuj Phogat9bcb0a82014-02-10 14:12:40 -08002544 prog->ARB_fragment_coord_conventions_enable |=
2545 prog->Shaders[i]->ARB_fragment_coord_conventions_enable;
2546
Paul Berrycd18ba12014-01-07 08:56:57 -08002547 gl_shader_stage shader_type = prog->Shaders[i]->Stage;
2548 shader_list[shader_type][num_shaders[shader_type]] = prog->Shaders[i];
2549 num_shaders[shader_type]++;
Ian Romanick832dfa52010-06-17 15:04:20 -07002550 }
2551
Paul Berry672fab02013-10-13 18:01:11 -07002552 /* In desktop GLSL, different shader versions may be linked together. In
2553 * GLSL ES, all shader versions must be the same.
Ian Romanick25f51d32010-07-16 15:51:50 -07002554 */
Paul Berry672fab02013-10-13 18:01:11 -07002555 if (is_es_prog && min_version != max_version) {
Ian Romanick586e7412011-07-28 14:04:09 -07002556 linker_error(prog, "all shaders must use same shading "
2557 "language version\n");
Ian Romanick25f51d32010-07-16 15:51:50 -07002558 goto done;
2559 }
2560
2561 prog->Version = max_version;
Paul Berry91c92bb2012-08-02 17:50:43 -07002562 prog->IsES = is_es_prog;
Ian Romanick25f51d32010-07-16 15:51:50 -07002563
Fabian Bielerbd85ba02013-05-24 23:26:54 +02002564 /* Geometry shaders have to be linked with vertex shaders.
2565 */
Paul Berrycd18ba12014-01-07 08:56:57 -08002566 if (num_shaders[MESA_SHADER_GEOMETRY] > 0 &&
Ian Romanickc557eb72014-01-23 18:26:29 -08002567 num_shaders[MESA_SHADER_VERTEX] == 0 &&
2568 !prog->SeparateShader) {
Fabian Bielerbd85ba02013-05-24 23:26:54 +02002569 linker_error(prog, "Geometry shader must be linked with "
2570 "vertex shader\n");
2571 goto done;
2572 }
2573
Paul Berry1fe274b2014-01-08 11:40:23 -08002574 /* Compute shaders have additional restrictions. */
2575 if (num_shaders[MESA_SHADER_COMPUTE] > 0 &&
2576 num_shaders[MESA_SHADER_COMPUTE] != prog->NumShaders) {
2577 linker_error(prog, "Compute shaders may not be linked with any other "
2578 "type of shader\n");
2579 }
2580
Paul Berry665b8d72014-01-07 10:11:39 -08002581 for (unsigned int i = 0; i < MESA_SHADER_STAGES; i++) {
Ian Romanick3322fba2010-10-14 13:28:42 -07002582 if (prog->_LinkedShaders[i] != NULL)
2583 ctx->Driver.DeleteShader(ctx, prog->_LinkedShaders[i]);
2584
2585 prog->_LinkedShaders[i] = NULL;
Eric Anholt5d0f4302010-08-18 12:02:35 -07002586 }
2587
Ian Romanickcd6764e2010-07-16 16:00:07 -07002588 /* Link all shaders for a particular stage and validate the result.
2589 */
Paul Berrycd18ba12014-01-07 08:56:57 -08002590 for (int stage = 0; stage < MESA_SHADER_STAGES; stage++) {
2591 if (num_shaders[stage] > 0) {
2592 gl_shader *const sh =
2593 link_intrastage_shaders(mem_ctx, ctx, prog, shader_list[stage],
2594 num_shaders[stage]);
Ian Romanick3fb87872010-07-09 14:09:34 -07002595
Paul Berrycd18ba12014-01-07 08:56:57 -08002596 if (!prog->LinkStatus)
2597 goto done;
Ian Romanick3fb87872010-07-09 14:09:34 -07002598
Paul Berrycd18ba12014-01-07 08:56:57 -08002599 switch (stage) {
2600 case MESA_SHADER_VERTEX:
2601 validate_vertex_shader_executable(prog, sh);
2602 break;
2603 case MESA_SHADER_GEOMETRY:
2604 validate_geometry_shader_executable(prog, sh);
2605 break;
2606 case MESA_SHADER_FRAGMENT:
2607 validate_fragment_shader_executable(prog, sh);
2608 break;
2609 }
2610 if (!prog->LinkStatus)
2611 goto done;
Ian Romanick3fb87872010-07-09 14:09:34 -07002612
Paul Berrycd18ba12014-01-07 08:56:57 -08002613 _mesa_reference_shader(ctx, &prog->_LinkedShaders[stage], sh);
2614 }
Ian Romanickcc22c5a2010-06-18 17:13:42 -07002615 }
2616
Paul Berrycd18ba12014-01-07 08:56:57 -08002617 if (num_shaders[MESA_SHADER_GEOMETRY] > 0)
Paul Berry44b7ebe2013-10-23 12:55:24 -07002618 prog->LastClipDistanceArraySize = prog->Geom.ClipDistanceArraySize;
Paul Berrycd18ba12014-01-07 08:56:57 -08002619 else if (num_shaders[MESA_SHADER_VERTEX] > 0)
2620 prog->LastClipDistanceArraySize = prog->Vert.ClipDistanceArraySize;
2621 else
2622 prog->LastClipDistanceArraySize = 0; /* Not used */
Bryan Cain25480922013-02-15 09:46:50 -06002623
Ian Romanick3ed850e2010-06-23 12:18:21 -07002624 /* Here begins the inter-stage linking phase. Some initial validation is
2625 * performed, then locations are assigned for uniforms, attributes, and
2626 * varyings.
2627 */
Paul Berryb95d2372013-07-27 11:08:31 -07002628 cross_validate_uniforms(prog);
2629 if (!prog->LinkStatus)
2630 goto done;
Ian Romanick3322fba2010-10-14 13:28:42 -07002631
Paul Berryb95d2372013-07-27 11:08:31 -07002632 unsigned prev;
Ian Romanick3322fba2010-10-14 13:28:42 -07002633
Paul Berry28e526d2014-01-06 19:47:25 -08002634 for (prev = 0; prev <= MESA_SHADER_FRAGMENT; prev++) {
Paul Berryb95d2372013-07-27 11:08:31 -07002635 if (prog->_LinkedShaders[prev] != NULL)
2636 break;
2637 }
Ian Romanick3322fba2010-10-14 13:28:42 -07002638
Tapani Pällieca9d162014-04-08 08:45:36 +03002639 check_explicit_uniform_locations(ctx, prog);
2640 if (!prog->LinkStatus)
2641 goto done;
2642
Paul Berryb95d2372013-07-27 11:08:31 -07002643 /* Validate the inputs of each stage with the output of the preceding
2644 * stage.
2645 */
Paul Berry28e526d2014-01-06 19:47:25 -08002646 for (unsigned i = prev + 1; i <= MESA_SHADER_FRAGMENT; i++) {
Paul Berryb95d2372013-07-27 11:08:31 -07002647 if (prog->_LinkedShaders[i] == NULL)
2648 continue;
Kenneth Graunke3ddfccb2013-05-20 23:46:16 -07002649
Paul Berry544e3122013-11-15 14:23:45 -08002650 validate_interstage_inout_blocks(prog, prog->_LinkedShaders[prev],
2651 prog->_LinkedShaders[i]);
Paul Berryb95d2372013-07-27 11:08:31 -07002652 if (!prog->LinkStatus)
2653 goto done;
Ian Romanick3322fba2010-10-14 13:28:42 -07002654
Paul Berryb95d2372013-07-27 11:08:31 -07002655 cross_validate_outputs_to_inputs(prog,
2656 prog->_LinkedShaders[prev],
2657 prog->_LinkedShaders[i]);
2658 if (!prog->LinkStatus)
2659 goto done;
Ian Romanick37101922010-06-18 19:02:10 -07002660
Paul Berryb95d2372013-07-27 11:08:31 -07002661 prev = i;
Ian Romanick37101922010-06-18 19:02:10 -07002662 }
Ian Romanick832dfa52010-06-17 15:04:20 -07002663
Paul Berry544e3122013-11-15 14:23:45 -08002664 /* Cross-validate uniform blocks between shader stages */
2665 validate_interstage_uniform_blocks(prog, prog->_LinkedShaders,
Paul Berry665b8d72014-01-07 10:11:39 -08002666 MESA_SHADER_STAGES);
Paul Berry544e3122013-11-15 14:23:45 -08002667 if (!prog->LinkStatus)
2668 goto done;
Jordan Justen5ebf5472013-03-10 03:20:03 -07002669
Paul Berry665b8d72014-01-07 10:11:39 -08002670 for (unsigned int i = 0; i < MESA_SHADER_STAGES; i++) {
Jordan Justen5ebf5472013-03-10 03:20:03 -07002671 if (prog->_LinkedShaders[i] != NULL)
2672 lower_named_interface_blocks(mem_ctx, prog->_LinkedShaders[i]);
2673 }
2674
Eric Anholt3de13952012-05-04 13:08:46 -07002675 /* Implement the GLSL 1.30+ rule for discard vs infinite loops Do
2676 * it before optimization because we want most of the checks to get
2677 * dropped thanks to constant propagation.
Paul Berry15ba2a52012-08-02 17:51:02 -07002678 *
2679 * This rule also applies to GLSL ES 3.00.
Eric Anholt3de13952012-05-04 13:08:46 -07002680 */
Paul Berry15ba2a52012-08-02 17:51:02 -07002681 if (max_version >= (is_es_prog ? 300 : 130)) {
Eric Anholt3de13952012-05-04 13:08:46 -07002682 struct gl_shader *sh = prog->_LinkedShaders[MESA_SHADER_FRAGMENT];
2683 if (sh) {
2684 lower_discard_flow(sh->ir);
2685 }
2686 }
2687
Eric Anholtf609cf72012-04-27 13:52:56 -07002688 if (!interstage_cross_validate_uniform_blocks(prog))
2689 goto done;
2690
Eric Anholt2f4fe152010-08-10 13:06:49 -07002691 /* Do common optimization before assigning storage for attributes,
2692 * uniforms, and varyings. Later optimization could possibly make
2693 * some of that unused.
2694 */
Paul Berry665b8d72014-01-07 10:11:39 -08002695 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Ian Romanick3322fba2010-10-14 13:28:42 -07002696 if (prog->_LinkedShaders[i] == NULL)
2697 continue;
2698
Ian Romanick02c5ae12011-07-11 10:46:01 -07002699 detect_recursion_linked(prog, prog->_LinkedShaders[i]->ir);
2700 if (!prog->LinkStatus)
2701 goto done;
2702
Marek Olšák002211f2014-08-03 04:31:56 +02002703 if (ctx->Const.ShaderCompilerOptions[i].LowerClipDistance) {
Paul Berry18392442012-12-04 11:11:02 -08002704 lower_clip_distance(prog->_LinkedShaders[i]);
2705 }
Paul Berryc06e3252011-08-11 20:58:21 -07002706
Kenneth Graunke169c6452014-04-06 23:25:00 -07002707 while (do_common_optimization(prog->_LinkedShaders[i]->ir, true, false,
Marek Olšák002211f2014-08-03 04:31:56 +02002708 &ctx->Const.ShaderCompilerOptions[i],
Kenneth Graunke169c6452014-04-06 23:25:00 -07002709 ctx->Const.NativeIntegers))
Eric Anholt2f4fe152010-08-10 13:06:49 -07002710 ;
Kenneth Graunke4f22db52014-04-26 00:18:54 -07002711
2712 lower_const_arrays_to_uniforms(prog->_LinkedShaders[i]->ir);
Ian Romanicka7ba9a72010-07-20 13:36:32 -07002713 }
Ian Romanick13e10e42010-06-21 12:03:24 -07002714
Iago Toral Quiroga75896832014-06-16 16:09:53 +02002715 /* Check and validate stream emissions in geometry shaders */
2716 validate_geometry_shader_emissions(ctx, prog);
2717
Paul Berry50895d42012-12-05 07:17:07 -08002718 /* Mark all generic shader inputs and outputs as unpaired. */
Ian Romanick6bdc1d92014-02-11 16:37:56 -08002719 for (unsigned i = MESA_SHADER_VERTEX; i <= MESA_SHADER_FRAGMENT; i++) {
2720 if (prog->_LinkedShaders[i] != NULL) {
2721 link_invalidate_variable_locations(prog->_LinkedShaders[i]->ir);
2722 }
Paul Berry50895d42012-12-05 07:17:07 -08002723 }
2724
Ian Romanickd32d4f72011-06-27 17:59:58 -07002725 /* FINISHME: The value of the max_attribute_index parameter is
2726 * FINISHME: implementation dependent based on the value of
2727 * FINISHME: GL_MAX_VERTEX_ATTRIBS. GL_MAX_VERTEX_ATTRIBS must be
2728 * FINISHME: at least 16, so hardcode 16 for now.
2729 */
2730 if (!assign_attribute_or_color_locations(prog, MESA_SHADER_VERTEX, 16)) {
Ian Romanickd32d4f72011-06-27 17:59:58 -07002731 goto done;
2732 }
2733
Dave Airlie1256a5d2012-03-24 13:33:41 +00002734 if (!assign_attribute_or_color_locations(prog, MESA_SHADER_FRAGMENT, MAX2(ctx->Const.MaxDrawBuffers, ctx->Const.MaxDualSourceDrawBuffers))) {
Ian Romanickd32d4f72011-06-27 17:59:58 -07002735 goto done;
Ian Romanick40e114b2010-08-17 14:55:50 -07002736 }
2737
Marek Olšák284d9542013-06-12 02:18:09 +02002738 unsigned first;
Paul Berry28e526d2014-01-06 19:47:25 -08002739 for (first = 0; first <= MESA_SHADER_FRAGMENT; first++) {
Marek Olšák284d9542013-06-12 02:18:09 +02002740 if (prog->_LinkedShaders[first] != NULL)
Ian Romanick3322fba2010-10-14 13:28:42 -07002741 break;
2742 }
2743
Paul Berry871ddb92011-11-05 11:17:32 -07002744 if (num_tfeedback_decls != 0) {
2745 /* From GL_EXT_transform_feedback:
2746 * A program will fail to link if:
2747 *
2748 * * the <count> specified by TransformFeedbackVaryingsEXT is
2749 * non-zero, but the program object has no vertex or geometry
2750 * shader;
2751 */
Bryan Cain25480922013-02-15 09:46:50 -06002752 if (first == MESA_SHADER_FRAGMENT) {
Paul Berry871ddb92011-11-05 11:17:32 -07002753 linker_error(prog, "Transform feedback varyings specified, but "
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002754 "no vertex or geometry shader is present.\n");
Paul Berry871ddb92011-11-05 11:17:32 -07002755 goto done;
2756 }
2757
2758 tfeedback_decls = ralloc_array(mem_ctx, tfeedback_decl,
2759 prog->TransformFeedback.NumVarying);
Paul Berry456279b2011-12-26 19:39:25 -08002760 if (!parse_tfeedback_decls(ctx, prog, mem_ctx, num_tfeedback_decls,
Paul Berry871ddb92011-11-05 11:17:32 -07002761 prog->TransformFeedback.VaryingNames,
2762 tfeedback_decls))
2763 goto done;
2764 }
2765
Marek Olšák284d9542013-06-12 02:18:09 +02002766 /* Linking the stages in the opposite order (from fragment to vertex)
2767 * ensures that inter-shader outputs written to in an earlier stage are
2768 * eliminated if they are (transitively) not used in a later stage.
2769 */
2770 int last, next;
Paul Berry28e526d2014-01-06 19:47:25 -08002771 for (last = MESA_SHADER_FRAGMENT; last >= 0; last--) {
Marek Olšák284d9542013-06-12 02:18:09 +02002772 if (prog->_LinkedShaders[last] != NULL)
2773 break;
Ian Romanick3322fba2010-10-14 13:28:42 -07002774 }
Ian Romanick13e10e42010-06-21 12:03:24 -07002775
Marek Olšák284d9542013-06-12 02:18:09 +02002776 if (last >= 0 && last < MESA_SHADER_FRAGMENT) {
2777 gl_shader *const sh = prog->_LinkedShaders[last];
2778
Ian Romanicka909b992014-12-01 14:07:30 -08002779 if (first == MESA_SHADER_GEOMETRY) {
2780 /* There was no vertex shader, but we still have to assign varying
2781 * locations for use by geometry shader inputs in SSO.
2782 *
2783 * If the shader is not separable (i.e., prog->SeparateShader is
2784 * false), linking will have already failed when first is
2785 * MESA_SHADER_GEOMETRY.
2786 */
2787 if (!assign_varying_locations(ctx, mem_ctx, prog,
2788 NULL, sh,
2789 num_tfeedback_decls, tfeedback_decls,
2790 prog->Geom.VerticesIn))
2791 goto done;
2792 }
2793
Ian Romanick1ff5a2b2014-02-14 12:10:27 -08002794 if (num_tfeedback_decls != 0 || prog->SeparateShader) {
Marek Olšák284d9542013-06-12 02:18:09 +02002795 /* There was no fragment shader, but we still have to assign varying
2796 * locations for use by transform feedback.
2797 */
2798 if (!assign_varying_locations(ctx, mem_ctx, prog,
2799 sh, NULL,
Paul Berry3b0cf702013-04-10 06:48:42 -07002800 num_tfeedback_decls, tfeedback_decls,
2801 0))
Marek Olšák284d9542013-06-12 02:18:09 +02002802 goto done;
2803 }
2804
Marek Olšákd13003f2013-08-09 22:34:45 +02002805 do_dead_builtin_varyings(ctx, sh, NULL,
Marek Olšákb3d8b4c2013-06-12 13:23:48 +02002806 num_tfeedback_decls, tfeedback_decls);
2807
Ian Romanick1ff5a2b2014-02-14 12:10:27 -08002808 if (!prog->SeparateShader)
2809 demote_shader_inputs_and_outputs(sh, ir_var_shader_out);
Marek Olšák284d9542013-06-12 02:18:09 +02002810
2811 /* Eliminate code that is now dead due to unused outputs being demoted.
Paul Berry871ddb92011-11-05 11:17:32 -07002812 */
Marek Olšák284d9542013-06-12 02:18:09 +02002813 while (do_dead_code(sh->ir, false))
2814 ;
2815 }
2816 else if (first == MESA_SHADER_FRAGMENT) {
Marek Olšákb3d8b4c2013-06-12 13:23:48 +02002817 /* If the program only contains a fragment shader...
Marek Olšák284d9542013-06-12 02:18:09 +02002818 */
2819 gl_shader *const sh = prog->_LinkedShaders[first];
2820
Marek Olšákd13003f2013-08-09 22:34:45 +02002821 do_dead_builtin_varyings(ctx, NULL, sh,
Marek Olšákb3d8b4c2013-06-12 13:23:48 +02002822 num_tfeedback_decls, tfeedback_decls);
2823
Ian Romanick1ff5a2b2014-02-14 12:10:27 -08002824 if (prog->SeparateShader) {
2825 if (!assign_varying_locations(ctx, mem_ctx, prog,
2826 NULL /* producer */,
2827 sh /* consumer */,
2828 0 /* num_tfeedback_decls */,
2829 NULL /* tfeedback_decls */,
2830 0 /* gs_input_vertices */))
2831 goto done;
2832 } else
2833 demote_shader_inputs_and_outputs(sh, ir_var_shader_in);
Marek Olšák284d9542013-06-12 02:18:09 +02002834
2835 while (do_dead_code(sh->ir, false))
2836 ;
2837 }
2838
2839 next = last;
2840 for (int i = next - 1; i >= 0; i--) {
2841 if (prog->_LinkedShaders[i] == NULL)
2842 continue;
2843
2844 gl_shader *const sh_i = prog->_LinkedShaders[i];
2845 gl_shader *const sh_next = prog->_LinkedShaders[next];
Paul Berry3b0cf702013-04-10 06:48:42 -07002846 unsigned gs_input_vertices =
2847 next == MESA_SHADER_GEOMETRY ? prog->Geom.VerticesIn : 0;
Marek Olšák284d9542013-06-12 02:18:09 +02002848
2849 if (!assign_varying_locations(ctx, mem_ctx, prog, sh_i, sh_next,
2850 next == MESA_SHADER_FRAGMENT ? num_tfeedback_decls : 0,
Paul Berry3b0cf702013-04-10 06:48:42 -07002851 tfeedback_decls, gs_input_vertices))
Paul Berry871ddb92011-11-05 11:17:32 -07002852 goto done;
Marek Olšák284d9542013-06-12 02:18:09 +02002853
Marek Olšákd13003f2013-08-09 22:34:45 +02002854 do_dead_builtin_varyings(ctx, sh_i, sh_next,
Marek Olšákb3d8b4c2013-06-12 13:23:48 +02002855 next == MESA_SHADER_FRAGMENT ? num_tfeedback_decls : 0,
2856 tfeedback_decls);
2857
Marek Olšák284d9542013-06-12 02:18:09 +02002858 demote_shader_inputs_and_outputs(sh_i, ir_var_shader_out);
2859 demote_shader_inputs_and_outputs(sh_next, ir_var_shader_in);
2860
2861 /* Eliminate code that is now dead due to unused outputs being demoted.
2862 */
2863 while (do_dead_code(sh_i->ir, false))
2864 ;
2865 while (do_dead_code(sh_next->ir, false))
2866 ;
2867
Marek Olšák3c555822013-06-13 03:17:22 +02002868 /* This must be done after all dead varyings are eliminated. */
Ian Romanick42305fb2013-09-10 12:00:34 -05002869 if (!check_against_output_limit(ctx, prog, sh_i))
2870 goto done;
2871 if (!check_against_input_limit(ctx, prog, sh_next))
Marek Olšák3c555822013-06-13 03:17:22 +02002872 goto done;
2873
Marek Olšák284d9542013-06-12 02:18:09 +02002874 next = i;
Paul Berry871ddb92011-11-05 11:17:32 -07002875 }
2876
2877 if (!store_tfeedback_info(ctx, prog, num_tfeedback_decls, tfeedback_decls))
2878 goto done;
2879
Ian Romanick960d7222011-10-21 11:21:02 -07002880 update_array_sizes(prog);
Matt Turner9e2e7c72014-08-08 19:46:05 -07002881 link_assign_uniform_locations(prog, ctx->Const.UniformBooleanTrue);
Francisco Jerez5c114932013-09-11 12:14:46 -07002882 link_assign_atomic_counter_resources(ctx, prog);
Marek Olšákec174a42011-11-18 15:00:10 +01002883 store_fragdepth_layout(prog);
Ian Romanick960d7222011-10-21 11:21:02 -07002884
Paul Berryb95d2372013-07-27 11:08:31 -07002885 check_resources(ctx, prog);
Francisco Jereze51158f2013-11-22 15:53:26 -08002886 check_image_resources(ctx, prog);
Francisco Jerez5c114932013-09-11 12:14:46 -07002887 link_check_atomic_counter_resources(ctx, prog);
2888
Paul Berryb95d2372013-07-27 11:08:31 -07002889 if (!prog->LinkStatus)
Ian Romanick92f81592011-11-08 12:37:19 -08002890 goto done;
2891
Ian Romanickce9171f2011-02-03 17:10:14 -08002892 /* OpenGL ES requires that a vertex shader and a fragment shader both be
Anuj Phogat03597cf2013-12-19 14:17:19 -08002893 * present in a linked program. GL_ARB_ES2_compatibility doesn't say
2894 * anything about shader linking when one of the shaders (vertex or
2895 * fragment shader) is absent. So, the extension shouldn't change the
2896 * behavior specified in GLSL specification.
Ian Romanickce9171f2011-02-03 17:10:14 -08002897 */
Ian Romanickf64bfb22014-03-27 10:29:30 -07002898 if (!prog->SeparateShader && ctx->API == API_OPENGLES2) {
Ian Romanickce9171f2011-02-03 17:10:14 -08002899 if (prog->_LinkedShaders[MESA_SHADER_VERTEX] == NULL) {
Ian Romanick586e7412011-07-28 14:04:09 -07002900 linker_error(prog, "program lacks a vertex shader\n");
Ian Romanickce9171f2011-02-03 17:10:14 -08002901 } else if (prog->_LinkedShaders[MESA_SHADER_FRAGMENT] == NULL) {
Ian Romanick586e7412011-07-28 14:04:09 -07002902 linker_error(prog, "program lacks a fragment shader\n");
Ian Romanickce9171f2011-02-03 17:10:14 -08002903 }
2904 }
2905
Ian Romanick13e10e42010-06-21 12:03:24 -07002906 /* FINISHME: Assign fragment shader output locations. */
2907
Ian Romanick832dfa52010-06-17 15:04:20 -07002908done:
Paul Berry665b8d72014-01-07 10:11:39 -08002909 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Paul Berrycd18ba12014-01-07 08:56:57 -08002910 free(shader_list[i]);
Kenneth Graunke2da02e72010-11-17 11:03:57 -08002911 if (prog->_LinkedShaders[i] == NULL)
2912 continue;
2913
Paul Berryd7fa9eb2013-11-22 12:37:22 -08002914 /* Do a final validation step to make sure that the IR wasn't
2915 * invalidated by any modifications performed after intrastage linking.
2916 */
2917 validate_ir_tree(prog->_LinkedShaders[i]->ir);
2918
Kenneth Graunke2da02e72010-11-17 11:03:57 -08002919 /* Retain any live IR, but trash the rest. */
2920 reparent_ir(prog->_LinkedShaders[i]->ir, prog->_LinkedShaders[i]->ir);
Ian Romanick7bbcc0b2011-09-30 14:21:10 -07002921
2922 /* The symbol table in the linked shaders may contain references to
2923 * variables that were removed (e.g., unused uniforms). Since it may
2924 * contain junk, there is no possible valid use. Delete it and set the
2925 * pointer to NULL.
2926 */
2927 delete prog->_LinkedShaders[i]->symbols;
2928 prog->_LinkedShaders[i]->symbols = NULL;
Kenneth Graunke2da02e72010-11-17 11:03:57 -08002929 }
2930
Kenneth Graunked3073f52011-01-21 14:32:31 -08002931 ralloc_free(mem_ctx);
Ian Romanick832dfa52010-06-17 15:04:20 -07002932}