blob: 44468c78a15e8d02d7a9eec4f43c6891e67ccedc [file] [log] [blame]
Ian Romanick832dfa52010-06-17 15:04:20 -07001/*
2 * Copyright © 2010 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 */
23
24/**
25 * \file linker.cpp
26 * GLSL linker implementation
27 *
28 * Given a set of shaders that are to be linked to generate a final program,
29 * there are three distinct stages.
30 *
31 * In the first stage shaders are partitioned into groups based on the shader
32 * type. All shaders of a particular type (e.g., vertex shaders) are linked
33 * together.
34 *
35 * - Undefined references in each shader are resolve to definitions in
36 * another shader.
37 * - Types and qualifiers of uniforms, outputs, and global variables defined
38 * in multiple shaders with the same name are verified to be the same.
39 * - Initializers for uniforms and global variables defined
40 * in multiple shaders with the same name are verified to be the same.
41 *
42 * The result, in the terminology of the GLSL spec, is a set of shader
43 * executables for each processing unit.
44 *
45 * After the first stage is complete, a series of semantic checks are performed
46 * on each of the shader executables.
47 *
48 * - Each shader executable must define a \c main function.
49 * - Each vertex shader executable must write to \c gl_Position.
50 * - Each fragment shader executable must write to either \c gl_FragData or
51 * \c gl_FragColor.
52 *
53 * In the final stage individual shader executables are linked to create a
54 * complete exectuable.
55 *
56 * - Types of uniforms defined in multiple shader stages with the same name
57 * are verified to be the same.
58 * - Initializers for uniforms defined in multiple shader stages with the
59 * same name are verified to be the same.
60 * - Types and qualifiers of outputs defined in one stage are verified to
61 * be the same as the types and qualifiers of inputs defined with the same
62 * name in a later stage.
63 *
64 * \author Ian Romanick <ian.d.romanick@intel.com>
65 */
Ian Romanickf36460e2010-06-23 12:07:22 -070066
Chia-I Wubfd7c9a2010-08-23 17:51:42 +080067#include "main/core.h"
Ian Romanick832dfa52010-06-17 15:04:20 -070068#include "glsl_symbol_table.h"
Eric Anholtfaf3dba2013-06-12 16:57:11 -070069#include "glsl_parser_extras.h"
Ian Romanick832dfa52010-06-17 15:04:20 -070070#include "ir.h"
71#include "program.h"
Aras Pranckevicius31747152010-07-29 12:40:49 +030072#include "program/hash_table.h"
Ian Romanick8fe8a812010-07-13 17:36:13 -070073#include "linker.h"
Paul Berry4b11b572012-12-17 14:20:35 -080074#include "link_varyings.h"
Ian Romanicka7ba9a72010-07-20 13:36:32 -070075#include "ir_optimization.h"
Bryan Cain25480922013-02-15 09:46:50 -060076#include "ir_rvalue_visitor.h"
Tapani Pällieca9d162014-04-08 08:45:36 +030077#include "ir_uniform.h"
Ian Romanick832dfa52010-06-17 15:04:20 -070078
Ian Romanick3322fba2010-10-14 13:28:42 -070079#include "main/shaderobj.h"
Eric Anholt6065a872013-06-12 18:12:40 -070080#include "main/enums.h"
Brian Paul241c5992014-12-15 16:41:58 -070081
Ian Romanick3322fba2010-10-14 13:28:42 -070082
Bryan Cain25480922013-02-15 09:46:50 -060083void linker_error(gl_shader_program *, const char *, ...);
84
Eric Anholt10ef9492013-09-20 11:03:44 -070085namespace {
86
Ian Romanick832dfa52010-06-17 15:04:20 -070087/**
88 * Visitor that determines whether or not a variable is ever written.
89 */
90class find_assignment_visitor : public ir_hierarchical_visitor {
91public:
92 find_assignment_visitor(const char *name)
93 : name(name), found(false)
94 {
95 /* empty */
96 }
97
98 virtual ir_visitor_status visit_enter(ir_assignment *ir)
99 {
100 ir_variable *const var = ir->lhs->variable_referenced();
101
102 if (strcmp(name, var->name) == 0) {
103 found = true;
104 return visit_stop;
105 }
106
107 return visit_continue_with_parent;
108 }
109
Eric Anholt18a60232010-08-23 11:29:25 -0700110 virtual ir_visitor_status visit_enter(ir_call *ir)
111 {
Kenneth Graunke48d0faa2014-01-10 16:39:17 -0800112 foreach_two_lists(formal_node, &ir->callee->parameters,
113 actual_node, &ir->actual_parameters) {
114 ir_rvalue *param_rval = (ir_rvalue *) actual_node;
115 ir_variable *sig_param = (ir_variable *) formal_node;
Eric Anholt18a60232010-08-23 11:29:25 -0700116
Tapani Pälli33ee2c62013-12-12 13:51:01 +0200117 if (sig_param->data.mode == ir_var_function_out ||
118 sig_param->data.mode == ir_var_function_inout) {
Eric Anholt18a60232010-08-23 11:29:25 -0700119 ir_variable *var = param_rval->variable_referenced();
120 if (var && strcmp(name, var->name) == 0) {
121 found = true;
122 return visit_stop;
123 }
124 }
Eric Anholt18a60232010-08-23 11:29:25 -0700125 }
126
Kenneth Graunked884f602012-03-20 15:56:37 -0700127 if (ir->return_deref != NULL) {
128 ir_variable *const var = ir->return_deref->variable_referenced();
129
130 if (strcmp(name, var->name) == 0) {
131 found = true;
132 return visit_stop;
133 }
134 }
135
Eric Anholt18a60232010-08-23 11:29:25 -0700136 return visit_continue_with_parent;
137 }
138
Ian Romanick832dfa52010-06-17 15:04:20 -0700139 bool variable_found()
140 {
141 return found;
142 }
143
144private:
145 const char *name; /**< Find writes to a variable with this name. */
146 bool found; /**< Was a write to the variable found? */
147};
148
Ian Romanickc93b8f12010-06-17 15:20:22 -0700149
Ian Romanickc33e78f2010-08-13 12:30:41 -0700150/**
151 * Visitor that determines whether or not a variable is ever read.
152 */
153class find_deref_visitor : public ir_hierarchical_visitor {
154public:
155 find_deref_visitor(const char *name)
156 : name(name), found(false)
157 {
158 /* empty */
159 }
160
161 virtual ir_visitor_status visit(ir_dereference_variable *ir)
162 {
163 if (strcmp(this->name, ir->var->name) == 0) {
164 this->found = true;
165 return visit_stop;
166 }
167
168 return visit_continue;
169 }
170
171 bool variable_found() const
172 {
173 return this->found;
174 }
175
176private:
177 const char *name; /**< Find writes to a variable with this name. */
178 bool found; /**< Was a write to the variable found? */
179};
180
181
Paul Berry7cfefe62013-07-30 21:13:48 -0700182class geom_array_resize_visitor : public ir_hierarchical_visitor {
183public:
184 unsigned num_vertices;
185 gl_shader_program *prog;
186
187 geom_array_resize_visitor(unsigned num_vertices, gl_shader_program *prog)
188 {
189 this->num_vertices = num_vertices;
190 this->prog = prog;
191 }
192
193 virtual ~geom_array_resize_visitor()
194 {
195 /* empty */
196 }
197
198 virtual ir_visitor_status visit(ir_variable *var)
199 {
Tapani Pälli33ee2c62013-12-12 13:51:01 +0200200 if (!var->type->is_array() || var->data.mode != ir_var_shader_in)
Paul Berry7cfefe62013-07-30 21:13:48 -0700201 return visit_continue;
202
203 unsigned size = var->type->length;
204
205 /* Generate a link error if the shader has declared this array with an
206 * incorrect size.
207 */
208 if (size && size != this->num_vertices) {
209 linker_error(this->prog, "size of array %s declared as %u, "
210 "but number of input vertices is %u\n",
211 var->name, size, this->num_vertices);
212 return visit_continue;
213 }
214
215 /* Generate a link error if the shader attempts to access an input
216 * array using an index too large for its actual size assigned at link
217 * time.
218 */
Tapani Pälli447bb902013-12-12 15:08:59 +0200219 if (var->data.max_array_access >= this->num_vertices) {
Paul Berry7cfefe62013-07-30 21:13:48 -0700220 linker_error(this->prog, "geometry shader accesses element %i of "
221 "%s, but only %i input vertices\n",
Tapani Pälli447bb902013-12-12 15:08:59 +0200222 var->data.max_array_access, var->name, this->num_vertices);
Paul Berry7cfefe62013-07-30 21:13:48 -0700223 return visit_continue;
224 }
225
226 var->type = glsl_type::get_array_instance(var->type->element_type(),
227 this->num_vertices);
Tapani Pälli447bb902013-12-12 15:08:59 +0200228 var->data.max_array_access = this->num_vertices - 1;
Paul Berry7cfefe62013-07-30 21:13:48 -0700229
230 return visit_continue;
231 }
232
233 /* Dereferences of input variables need to be updated so that their type
234 * matches the newly assigned type of the variable they are accessing. */
235 virtual ir_visitor_status visit(ir_dereference_variable *ir)
236 {
237 ir->type = ir->var->type;
238 return visit_continue;
239 }
240
241 /* Dereferences of 2D input arrays need to be updated so that their type
242 * matches the newly assigned type of the array they are accessing. */
243 virtual ir_visitor_status visit_leave(ir_dereference_array *ir)
244 {
245 const glsl_type *const vt = ir->array->type;
246 if (vt->is_array())
247 ir->type = vt->element_type();
248 return visit_continue;
249 }
250};
251
Paul Berry1a33e022013-08-18 20:59:37 -0700252/**
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200253 * Visitor that determines the highest stream id to which a (geometry) shader
254 * emits vertices. It also checks whether End{Stream}Primitive is ever called.
Paul Berry1a33e022013-08-18 20:59:37 -0700255 */
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200256class find_emit_vertex_visitor : public ir_hierarchical_visitor {
Paul Berry1a33e022013-08-18 20:59:37 -0700257public:
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200258 find_emit_vertex_visitor(int max_allowed)
259 : max_stream_allowed(max_allowed),
260 invalid_stream_id(0),
261 invalid_stream_id_from_emit_vertex(false),
262 end_primitive_found(false),
263 uses_non_zero_stream(false)
Paul Berry1a33e022013-08-18 20:59:37 -0700264 {
265 /* empty */
266 }
267
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200268 virtual ir_visitor_status visit_leave(ir_emit_vertex *ir)
Paul Berry1a33e022013-08-18 20:59:37 -0700269 {
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200270 int stream_id = ir->stream_id();
271
272 if (stream_id < 0) {
273 invalid_stream_id = stream_id;
274 invalid_stream_id_from_emit_vertex = true;
275 return visit_stop;
276 }
277
278 if (stream_id > max_stream_allowed) {
279 invalid_stream_id = stream_id;
280 invalid_stream_id_from_emit_vertex = true;
281 return visit_stop;
282 }
283
284 if (stream_id != 0)
285 uses_non_zero_stream = true;
286
287 return visit_continue;
Paul Berry1a33e022013-08-18 20:59:37 -0700288 }
289
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200290 virtual ir_visitor_status visit_leave(ir_end_primitive *ir)
Paul Berry1a33e022013-08-18 20:59:37 -0700291 {
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200292 end_primitive_found = true;
293
294 int stream_id = ir->stream_id();
295
296 if (stream_id < 0) {
297 invalid_stream_id = stream_id;
298 invalid_stream_id_from_emit_vertex = false;
299 return visit_stop;
300 }
301
302 if (stream_id > max_stream_allowed) {
303 invalid_stream_id = stream_id;
304 invalid_stream_id_from_emit_vertex = false;
305 return visit_stop;
306 }
307
308 if (stream_id != 0)
309 uses_non_zero_stream = true;
310
311 return visit_continue;
312 }
313
314 bool error()
315 {
316 return invalid_stream_id != 0;
317 }
318
319 const char *error_func()
320 {
321 return invalid_stream_id_from_emit_vertex ?
322 "EmitStreamVertex" : "EndStreamPrimitive";
323 }
324
325 int error_stream()
326 {
327 return invalid_stream_id;
328 }
329
330 bool uses_streams()
331 {
332 return uses_non_zero_stream;
333 }
334
335 bool uses_end_primitive()
336 {
337 return end_primitive_found;
Paul Berry1a33e022013-08-18 20:59:37 -0700338 }
339
340private:
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200341 int max_stream_allowed;
342 int invalid_stream_id;
343 bool invalid_stream_id_from_emit_vertex;
344 bool end_primitive_found;
345 bool uses_non_zero_stream;
Paul Berry1a33e022013-08-18 20:59:37 -0700346};
347
Eric Anholt10ef9492013-09-20 11:03:44 -0700348} /* anonymous namespace */
Paul Berry1a33e022013-08-18 20:59:37 -0700349
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700350void
Ian Romanick586e7412011-07-28 14:04:09 -0700351linker_error(gl_shader_program *prog, const char *fmt, ...)
Ian Romanickf36460e2010-06-23 12:07:22 -0700352{
353 va_list ap;
354
Kenneth Graunked3073f52011-01-21 14:32:31 -0800355 ralloc_strcat(&prog->InfoLog, "error: ");
Ian Romanickf36460e2010-06-23 12:07:22 -0700356 va_start(ap, fmt);
Kenneth Graunked3073f52011-01-21 14:32:31 -0800357 ralloc_vasprintf_append(&prog->InfoLog, fmt, ap);
Ian Romanickf36460e2010-06-23 12:07:22 -0700358 va_end(ap);
Ian Romanick586e7412011-07-28 14:04:09 -0700359
360 prog->LinkStatus = false;
Ian Romanickf36460e2010-06-23 12:07:22 -0700361}
362
363
364void
Ian Romanick379a32f2011-07-28 14:09:06 -0700365linker_warning(gl_shader_program *prog, const char *fmt, ...)
366{
367 va_list ap;
368
Anuj Phogat80b4a362014-03-07 16:48:35 -0800369 ralloc_strcat(&prog->InfoLog, "warning: ");
Ian Romanick379a32f2011-07-28 14:09:06 -0700370 va_start(ap, fmt);
371 ralloc_vasprintf_append(&prog->InfoLog, fmt, ap);
372 va_end(ap);
373
374}
375
376
Paul Berryb92900d2013-01-28 14:21:59 -0800377/**
378 * Given a string identifying a program resource, break it into a base name
379 * and an optional array index in square brackets.
380 *
381 * If an array index is present, \c out_base_name_end is set to point to the
382 * "[" that precedes the array index, and the array index itself is returned
383 * as a long.
384 *
385 * If no array index is present (or if the array index is negative or
386 * mal-formed), \c out_base_name_end, is set to point to the null terminator
387 * at the end of the input string, and -1 is returned.
388 *
389 * Only the final array index is parsed; if the string contains other array
390 * indices (or structure field accesses), they are left in the base name.
391 *
392 * No attempt is made to check that the base name is properly formed;
393 * typically the caller will look up the base name in a hash table, so
394 * ill-formed base names simply turn into hash table lookup failures.
395 */
396long
397parse_program_resource_name(const GLchar *name,
398 const GLchar **out_base_name_end)
399{
400 /* Section 7.3.1 ("Program Interfaces") of the OpenGL 4.3 spec says:
401 *
402 * "When an integer array element or block instance number is part of
403 * the name string, it will be specified in decimal form without a "+"
404 * or "-" sign or any extra leading zeroes. Additionally, the name
405 * string will not include white space anywhere in the string."
406 */
407
408 const size_t len = strlen(name);
409 *out_base_name_end = name + len;
410
411 if (len == 0 || name[len-1] != ']')
412 return -1;
413
414 /* Walk backwards over the string looking for a non-digit character. This
415 * had better be the opening bracket for an array index.
416 *
417 * Initially, i specifies the location of the ']'. Since the string may
418 * contain only the ']' charcater, walk backwards very carefully.
419 */
420 unsigned i;
421 for (i = len - 1; (i > 0) && isdigit(name[i-1]); --i)
422 /* empty */ ;
423
424 if ((i == 0) || name[i-1] != '[')
425 return -1;
426
427 long array_index = strtol(&name[i], NULL, 10);
428 if (array_index < 0)
429 return -1;
430
431 *out_base_name_end = name + (i - 1);
432 return array_index;
433}
434
435
Ian Romanick379a32f2011-07-28 14:09:06 -0700436void
Ian Romanick63974c02013-10-04 10:46:29 -0700437link_invalidate_variable_locations(exec_list *ir)
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700438{
Matt Turner4d784462014-06-24 21:34:05 -0700439 foreach_in_list(ir_instruction, node, ir) {
440 ir_variable *const var = node->as_variable();
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700441
Paul Berry50895d42012-12-05 07:17:07 -0800442 if (var == NULL)
443 continue;
444
Ian Romanick63974c02013-10-04 10:46:29 -0700445 /* Only assign locations for variables that lack an explicit location.
446 * Explicit locations are set for all built-in variables, generic vertex
447 * shader inputs (via layout(location=...)), and generic fragment shader
448 * outputs (also via layout(location=...)).
449 */
Tapani Pälli447bb902013-12-12 15:08:59 +0200450 if (!var->data.explicit_location) {
451 var->data.location = -1;
452 var->data.location_frac = 0;
Paul Berry50895d42012-12-05 07:17:07 -0800453 }
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700454
Ian Romanick63974c02013-10-04 10:46:29 -0700455 /* ir_variable::is_unmatched_generic_inout is used by the linker while
456 * connecting outputs from one stage to inputs of the next stage.
457 *
458 * There are two implicit assumptions here. First, we assume that any
459 * built-in variable (i.e., non-generic in or out) will have
460 * explicit_location set. Second, we assume that any generic in or out
461 * will not have explicit_location set.
462 *
463 * This second assumption will only be valid until
464 * GL_ARB_separate_shader_objects is supported. When that extension is
465 * implemented, this function will need some modifications.
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700466 */
Tapani Pälli447bb902013-12-12 15:08:59 +0200467 if (!var->data.explicit_location) {
468 var->data.is_unmatched_generic_inout = 1;
Paul Berry3e81c662012-12-05 10:47:55 -0800469 } else {
Tapani Pälli447bb902013-12-12 15:08:59 +0200470 var->data.is_unmatched_generic_inout = 0;
Paul Berry3e81c662012-12-05 10:47:55 -0800471 }
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700472 }
473}
474
475
Ian Romanickc93b8f12010-06-17 15:20:22 -0700476/**
Paul Berry44e07de2013-06-11 14:11:05 -0700477 * Set UsesClipDistance and ClipDistanceArraySize based on the given shader.
478 *
479 * Also check for errors based on incorrect usage of gl_ClipVertex and
480 * gl_ClipDistance.
481 *
482 * Return false if an error was reported.
483 */
484static void
Paul Berryb30e25f2013-12-17 09:49:43 -0800485analyze_clip_usage(struct gl_shader_program *prog,
Paul Berry44e07de2013-06-11 14:11:05 -0700486 struct gl_shader *shader, GLboolean *UsesClipDistance,
487 GLuint *ClipDistanceArraySize)
488{
489 *ClipDistanceArraySize = 0;
490
491 if (!prog->IsES && prog->Version >= 130) {
492 /* From section 7.1 (Vertex Shader Special Variables) of the
493 * GLSL 1.30 spec:
494 *
495 * "It is an error for a shader to statically write both
496 * gl_ClipVertex and gl_ClipDistance."
497 *
498 * This does not apply to GLSL ES shaders, since GLSL ES defines neither
499 * gl_ClipVertex nor gl_ClipDistance.
500 */
501 find_assignment_visitor clip_vertex("gl_ClipVertex");
502 find_assignment_visitor clip_distance("gl_ClipDistance");
503
504 clip_vertex.run(shader->ir);
505 clip_distance.run(shader->ir);
506 if (clip_vertex.variable_found() && clip_distance.variable_found()) {
507 linker_error(prog, "%s shader writes to both `gl_ClipVertex' "
Paul Berryb30e25f2013-12-17 09:49:43 -0800508 "and `gl_ClipDistance'\n",
Paul Berrye3b86f02014-01-07 10:58:56 -0800509 _mesa_shader_stage_to_string(shader->Stage));
Paul Berry44e07de2013-06-11 14:11:05 -0700510 return;
511 }
512 *UsesClipDistance = clip_distance.variable_found();
513 ir_variable *clip_distance_var =
514 shader->symbols->get_variable("gl_ClipDistance");
515 if (clip_distance_var)
516 *ClipDistanceArraySize = clip_distance_var->type->length;
517 } else {
518 *UsesClipDistance = false;
519 }
520}
521
522
523/**
Paul Berry1ad54ae2011-09-17 09:42:02 -0700524 * Verify that a vertex shader executable meets all semantic requirements.
525 *
Paul Berry642e5b412012-01-04 13:57:52 -0800526 * Also sets prog->Vert.UsesClipDistance and prog->Vert.ClipDistanceArraySize
527 * as a side effect.
Ian Romanickc93b8f12010-06-17 15:20:22 -0700528 *
529 * \param shader Vertex shader executable to be verified
530 */
Paul Berryb95d2372013-07-27 11:08:31 -0700531void
Eric Anholt849e1812010-06-30 11:49:17 -0700532validate_vertex_shader_executable(struct gl_shader_program *prog,
Eric Anholt16b68b12010-06-30 11:05:43 -0700533 struct gl_shader *shader)
Ian Romanick832dfa52010-06-17 15:04:20 -0700534{
535 if (shader == NULL)
Paul Berryb95d2372013-07-27 11:08:31 -0700536 return;
Ian Romanick832dfa52010-06-17 15:04:20 -0700537
Eric Anholtf1c1c9e2012-03-19 22:43:27 -0700538 /* From the GLSL 1.10 spec, page 48:
539 *
540 * "The variable gl_Position is available only in the vertex
541 * language and is intended for writing the homogeneous vertex
542 * position. All executions of a well-formed vertex shader
543 * executable must write a value into this variable. [...] The
544 * variable gl_Position is available only in the vertex
545 * language and is intended for writing the homogeneous vertex
546 * position. All executions of a well-formed vertex shader
547 * executable must write a value into this variable."
548 *
549 * while in GLSL 1.40 this text is changed to:
550 *
551 * "The variable gl_Position is available only in the vertex
552 * language and is intended for writing the homogeneous vertex
553 * position. It can be written at any time during shader
554 * execution. It may also be read back by a vertex shader
555 * after being written. This value will be used by primitive
556 * assembly, clipping, culling, and other fixed functionality
557 * operations, if present, that operate on primitives after
558 * vertex processing has occurred. Its value is undefined if
559 * the vertex shader executable does not write gl_Position."
Paul Berry15ba2a52012-08-02 17:51:02 -0700560 *
Kalyan Kondapally78c92012014-09-08 11:10:42 +0300561 * All GLSL ES Versions are similar to GLSL 1.40--failing to write to
562 * gl_Position is not an error.
Eric Anholtf1c1c9e2012-03-19 22:43:27 -0700563 */
Kalyan Kondapallydbc2d812014-09-10 20:20:23 -0700564 if (prog->Version < (prog->IsES ? 300 : 140)) {
Eric Anholtf1c1c9e2012-03-19 22:43:27 -0700565 find_assignment_visitor find("gl_Position");
566 find.run(shader->ir);
567 if (!find.variable_found()) {
Kalyan Kondapallydbc2d812014-09-10 20:20:23 -0700568 if (prog->IsES) {
569 linker_warning(prog,
570 "vertex shader does not write to `gl_Position'."
571 "It's value is undefined. \n");
572 } else {
573 linker_error(prog,
574 "vertex shader does not write to `gl_Position'. \n");
575 }
Paul Berryb95d2372013-07-27 11:08:31 -0700576 return;
Eric Anholtf1c1c9e2012-03-19 22:43:27 -0700577 }
Ian Romanick832dfa52010-06-17 15:04:20 -0700578 }
579
Paul Berryb30e25f2013-12-17 09:49:43 -0800580 analyze_clip_usage(prog, shader, &prog->Vert.UsesClipDistance,
Paul Berry44e07de2013-06-11 14:11:05 -0700581 &prog->Vert.ClipDistanceArraySize);
Ian Romanick832dfa52010-06-17 15:04:20 -0700582}
583
584
Ian Romanickc93b8f12010-06-17 15:20:22 -0700585/**
586 * Verify that a fragment shader executable meets all semantic requirements
587 *
588 * \param shader Fragment shader executable to be verified
589 */
Paul Berryb95d2372013-07-27 11:08:31 -0700590void
Eric Anholt849e1812010-06-30 11:49:17 -0700591validate_fragment_shader_executable(struct gl_shader_program *prog,
Eric Anholt16b68b12010-06-30 11:05:43 -0700592 struct gl_shader *shader)
Ian Romanick832dfa52010-06-17 15:04:20 -0700593{
594 if (shader == NULL)
Paul Berryb95d2372013-07-27 11:08:31 -0700595 return;
Ian Romanick832dfa52010-06-17 15:04:20 -0700596
Ian Romanick832dfa52010-06-17 15:04:20 -0700597 find_assignment_visitor frag_color("gl_FragColor");
598 find_assignment_visitor frag_data("gl_FragData");
599
Eric Anholt16b68b12010-06-30 11:05:43 -0700600 frag_color.run(shader->ir);
601 frag_data.run(shader->ir);
Ian Romanick832dfa52010-06-17 15:04:20 -0700602
Ian Romanick832dfa52010-06-17 15:04:20 -0700603 if (frag_color.variable_found() && frag_data.variable_found()) {
Ian Romanick586e7412011-07-28 14:04:09 -0700604 linker_error(prog, "fragment shader writes to both "
605 "`gl_FragColor' and `gl_FragData'\n");
Ian Romanick832dfa52010-06-17 15:04:20 -0700606 }
Ian Romanick832dfa52010-06-17 15:04:20 -0700607}
608
Bryan Cain25480922013-02-15 09:46:50 -0600609/**
610 * Verify that a geometry shader executable meets all semantic requirements
611 *
Paul Berry44e07de2013-06-11 14:11:05 -0700612 * Also sets prog->Geom.VerticesIn, prog->Geom.UsesClipDistance, and
613 * prog->Geom.ClipDistanceArraySize as a side effect.
Bryan Cain25480922013-02-15 09:46:50 -0600614 *
615 * \param shader Geometry shader executable to be verified
616 */
617void
618validate_geometry_shader_executable(struct gl_shader_program *prog,
619 struct gl_shader *shader)
620{
621 if (shader == NULL)
622 return;
623
624 unsigned num_vertices = vertices_per_prim(prog->Geom.InputType);
625 prog->Geom.VerticesIn = num_vertices;
Paul Berry44e07de2013-06-11 14:11:05 -0700626
Paul Berryb30e25f2013-12-17 09:49:43 -0800627 analyze_clip_usage(prog, shader, &prog->Geom.UsesClipDistance,
Paul Berry44e07de2013-06-11 14:11:05 -0700628 &prog->Geom.ClipDistanceArraySize);
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200629}
Paul Berry1a33e022013-08-18 20:59:37 -0700630
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200631/**
632 * Check if geometry shaders emit to non-zero streams and do corresponding
633 * validations.
634 */
635static void
636validate_geometry_shader_emissions(struct gl_context *ctx,
637 struct gl_shader_program *prog)
638{
639 if (prog->_LinkedShaders[MESA_SHADER_GEOMETRY] != NULL) {
640 find_emit_vertex_visitor emit_vertex(ctx->Const.MaxVertexStreams - 1);
641 emit_vertex.run(prog->_LinkedShaders[MESA_SHADER_GEOMETRY]->ir);
642 if (emit_vertex.error()) {
643 linker_error(prog, "Invalid call %s(%d). Accepted values for the "
Andres Gomezf9fc3ae2014-11-18 08:43:35 -0700644 "stream parameter are in the range [0, %d].\n",
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200645 emit_vertex.error_func(),
646 emit_vertex.error_stream(),
647 ctx->Const.MaxVertexStreams - 1);
648 }
649 prog->Geom.UsesStreams = emit_vertex.uses_streams();
650 prog->Geom.UsesEndPrimitive = emit_vertex.uses_end_primitive();
651
652 /* From the ARB_gpu_shader5 spec:
653 *
654 * "Multiple vertex streams are supported only if the output primitive
655 * type is declared to be "points". A program will fail to link if it
656 * contains a geometry shader calling EmitStreamVertex() or
657 * EndStreamPrimitive() if its output primitive type is not "points".
658 *
659 * However, in the same spec:
660 *
661 * "The function EmitVertex() is equivalent to calling EmitStreamVertex()
662 * with <stream> set to zero."
663 *
664 * And:
665 *
666 * "The function EndPrimitive() is equivalent to calling
667 * EndStreamPrimitive() with <stream> set to zero."
668 *
669 * Since we can call EmitVertex() and EndPrimitive() when we output
670 * primitives other than points, calling EmitStreamVertex(0) or
671 * EmitEndPrimitive(0) should not produce errors. This it also what Nvidia
672 * does. Currently we only set prog->Geom.UsesStreams to TRUE when
673 * EmitStreamVertex() or EmitEndPrimitive() are called with a non-zero
674 * stream.
675 */
676 if (prog->Geom.UsesStreams && prog->Geom.OutputType != GL_POINTS) {
677 linker_error(prog, "EmitStreamVertex(n) and EndStreamPrimitive(n) "
Andres Gomezf9fc3ae2014-11-18 08:43:35 -0700678 "with n>0 requires point output\n");
Iago Toral Quiroga75896832014-06-16 16:09:53 +0200679 }
680 }
Bryan Cain25480922013-02-15 09:46:50 -0600681}
682
Ian Romanick832dfa52010-06-17 15:04:20 -0700683
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700684/**
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700685 * Perform validation of global variables used across multiple shaders
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700686 */
Paul Berryb95d2372013-07-27 11:08:31 -0700687void
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700688cross_validate_globals(struct gl_shader_program *prog,
689 struct gl_shader **shader_list,
690 unsigned num_shaders,
691 bool uniforms_only)
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700692{
693 /* Examine all of the uniforms in all of the shaders and cross validate
694 * them.
695 */
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700696 glsl_symbol_table variables;
697 for (unsigned i = 0; i < num_shaders; i++) {
Ian Romanick3322fba2010-10-14 13:28:42 -0700698 if (shader_list[i] == NULL)
699 continue;
700
Matt Turner4d784462014-06-24 21:34:05 -0700701 foreach_in_list(ir_instruction, node, shader_list[i]->ir) {
702 ir_variable *const var = node->as_variable();
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700703
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700704 if (var == NULL)
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700705 continue;
706
Tapani Pälli33ee2c62013-12-12 13:51:01 +0200707 if (uniforms_only && (var->data.mode != ir_var_uniform))
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700708 continue;
709
Ian Romanick7e2aa912010-07-19 17:12:42 -0700710 /* Don't cross validate temporaries that are at global scope. These
711 * will eventually get pulled into the shaders 'main'.
712 */
Tapani Pälli33ee2c62013-12-12 13:51:01 +0200713 if (var->data.mode == ir_var_temporary)
Ian Romanick7e2aa912010-07-19 17:12:42 -0700714 continue;
715
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700716 /* If a global with this name has already been seen, verify that the
717 * new instance has the same type. In addition, if the globals have
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700718 * initializers, the values of the initializers must be the same.
719 */
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700720 ir_variable *const existing = variables.get_variable(var->name);
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700721 if (existing != NULL) {
722 if (var->type != existing->type) {
Ian Romanicka2711d62010-08-29 22:07:49 -0700723 /* Consider the types to be "the same" if both types are arrays
724 * of the same type and one of the arrays is implicitly sized.
725 * In addition, set the type of the linked variable to the
726 * explicitly sized array.
727 */
728 if (var->type->is_array()
729 && existing->type->is_array()
730 && (var->type->fields.array == existing->type->fields.array)
731 && ((var->type->length == 0)
732 || (existing->type->length == 0))) {
Ian Romanick0f4b2a02011-01-25 12:06:18 -0800733 if (var->type->length != 0) {
Ian Romanicka2711d62010-08-29 22:07:49 -0700734 existing->type = var->type;
Ian Romanick6f539212010-12-07 18:30:33 -0800735 }
Grigori Goronzy955c93d2013-11-27 00:15:06 +0100736 } else if (var->type->is_record()
737 && existing->type->is_record()
738 && existing->type->record_compare(var->type)) {
739 existing->type = var->type;
Ian Romanicka2711d62010-08-29 22:07:49 -0700740 } else {
Ian Romanick586e7412011-07-28 14:04:09 -0700741 linker_error(prog, "%s `%s' declared as type "
742 "`%s' and type `%s'\n",
743 mode_string(var),
744 var->name, var->type->name,
745 existing->type->name);
Paul Berryb95d2372013-07-27 11:08:31 -0700746 return;
Ian Romanicka2711d62010-08-29 22:07:49 -0700747 }
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700748 }
749
Tapani Pälli447bb902013-12-12 15:08:59 +0200750 if (var->data.explicit_location) {
751 if (existing->data.explicit_location
752 && (var->data.location != existing->data.location)) {
Ian Romanick586e7412011-07-28 14:04:09 -0700753 linker_error(prog, "explicit locations for %s "
754 "`%s' have differing values\n",
755 mode_string(var), var->name);
Paul Berryb95d2372013-07-27 11:08:31 -0700756 return;
Ian Romanick68a4fc92010-10-07 17:21:22 -0700757 }
758
Tapani Pälli447bb902013-12-12 15:08:59 +0200759 existing->data.location = var->data.location;
760 existing->data.explicit_location = true;
Ian Romanick68a4fc92010-10-07 17:21:22 -0700761 }
762
Kenneth Graunke9a9a8302013-07-16 12:18:57 -0700763 /* From the GLSL 4.20 specification:
764 * "A link error will result if two compilation units in a program
765 * specify different integer-constant bindings for the same
766 * opaque-uniform name. However, it is not an error to specify a
767 * binding on some but not all declarations for the same name"
768 */
Tapani Pälli447bb902013-12-12 15:08:59 +0200769 if (var->data.explicit_binding) {
770 if (existing->data.explicit_binding &&
771 var->data.binding != existing->data.binding) {
Kenneth Graunke9a9a8302013-07-16 12:18:57 -0700772 linker_error(prog, "explicit bindings for %s "
773 "`%s' have differing values\n",
774 mode_string(var), var->name);
Paul Berryb95d2372013-07-27 11:08:31 -0700775 return;
Kenneth Graunke9a9a8302013-07-16 12:18:57 -0700776 }
777
Tapani Pälli447bb902013-12-12 15:08:59 +0200778 existing->data.binding = var->data.binding;
779 existing->data.explicit_binding = true;
Kenneth Graunke9a9a8302013-07-16 12:18:57 -0700780 }
781
Francisco Jerez5c114932013-09-11 12:14:46 -0700782 if (var->type->contains_atomic() &&
Tapani Pälli447bb902013-12-12 15:08:59 +0200783 var->data.atomic.offset != existing->data.atomic.offset) {
Francisco Jerez5c114932013-09-11 12:14:46 -0700784 linker_error(prog, "offset specifications for %s "
785 "`%s' have differing values\n",
786 mode_string(var), var->name);
787 return;
788 }
789
Ian Romanick46173f92011-10-31 13:07:06 -0700790 /* Validate layout qualifiers for gl_FragDepth.
791 *
792 * From the AMD/ARB_conservative_depth specs:
793 *
794 * "If gl_FragDepth is redeclared in any fragment shader in a
795 * program, it must be redeclared in all fragment shaders in
796 * that program that have static assignments to
797 * gl_FragDepth. All redeclarations of gl_FragDepth in all
798 * fragment shaders in a single program must have the same set
799 * of qualifiers."
800 */
801 if (strcmp(var->name, "gl_FragDepth") == 0) {
Tapani Pälli447bb902013-12-12 15:08:59 +0200802 bool layout_declared = var->data.depth_layout != ir_depth_layout_none;
Ian Romanick46173f92011-10-31 13:07:06 -0700803 bool layout_differs =
Tapani Pälli447bb902013-12-12 15:08:59 +0200804 var->data.depth_layout != existing->data.depth_layout;
Ian Romanick46173f92011-10-31 13:07:06 -0700805
806 if (layout_declared && layout_differs) {
807 linker_error(prog,
808 "All redeclarations of gl_FragDepth in all "
809 "fragment shaders in a single program must have "
Andres Gomezf9fc3ae2014-11-18 08:43:35 -0700810 "the same set of qualifiers.\n");
Ian Romanick46173f92011-10-31 13:07:06 -0700811 }
812
Tapani Pälli33ee2c62013-12-12 13:51:01 +0200813 if (var->data.used && layout_differs) {
Ian Romanick46173f92011-10-31 13:07:06 -0700814 linker_error(prog,
815 "If gl_FragDepth is redeclared with a layout "
816 "qualifier in any fragment shader, it must be "
817 "redeclared with the same layout qualifier in "
818 "all fragment shaders that have assignments to "
Andres Gomezf9fc3ae2014-11-18 08:43:35 -0700819 "gl_FragDepth\n");
Ian Romanick46173f92011-10-31 13:07:06 -0700820 }
821 }
Chad Versaceaddae332011-01-27 01:40:31 -0800822
Ian Romanickf37b1ad2011-10-31 14:31:07 -0700823 /* Page 35 (page 41 of the PDF) of the GLSL 4.20 spec says:
824 *
825 * "If a shared global has multiple initializers, the
826 * initializers must all be constant expressions, and they
827 * must all have the same value. Otherwise, a link error will
828 * result. (A shared global having only one initializer does
829 * not require that initializer to be a constant expression.)"
830 *
831 * Previous to 4.20 the GLSL spec simply said that initializers
832 * must have the same value. In this case of non-constant
833 * initializers, this was impossible to determine. As a result,
834 * no vendor actually implemented that behavior. The 4.20
835 * behavior matches the implemented behavior of at least one other
836 * vendor, so we'll implement that for all GLSL versions.
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700837 */
Ian Romanickf37b1ad2011-10-31 14:31:07 -0700838 if (var->constant_initializer != NULL) {
839 if (existing->constant_initializer != NULL) {
840 if (!var->constant_initializer->has_value(existing->constant_initializer)) {
Ian Romanick586e7412011-07-28 14:04:09 -0700841 linker_error(prog, "initializers for %s "
842 "`%s' have differing values\n",
843 mode_string(var), var->name);
Paul Berryb95d2372013-07-27 11:08:31 -0700844 return;
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700845 }
Ian Romanickf37b1ad2011-10-31 14:31:07 -0700846 } else {
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700847 /* If the first-seen instance of a particular uniform did not
848 * have an initializer but a later instance does, copy the
849 * initializer to the version stored in the symbol table.
850 */
Ian Romanickde415b72010-07-14 13:22:12 -0700851 /* FINISHME: This is wrong. The constant_value field should
852 * FINISHME: not be modified! Imagine a case where a shader
853 * FINISHME: without an initializer is linked in two different
854 * FINISHME: programs with shaders that have differing
855 * FINISHME: initializers. Linking with the first will
856 * FINISHME: modify the shader, and linking with the second
857 * FINISHME: will fail.
858 */
Ian Romanickf37b1ad2011-10-31 14:31:07 -0700859 existing->constant_initializer =
860 var->constant_initializer->clone(ralloc_parent(existing),
861 NULL);
862 }
863 }
864
Tapani Pälli447bb902013-12-12 15:08:59 +0200865 if (var->data.has_initializer) {
866 if (existing->data.has_initializer
Ian Romanickf37b1ad2011-10-31 14:31:07 -0700867 && (var->constant_initializer == NULL
868 || existing->constant_initializer == NULL)) {
869 linker_error(prog,
870 "shared global variable `%s' has multiple "
871 "non-constant initializers.\n",
872 var->name);
Paul Berryb95d2372013-07-27 11:08:31 -0700873 return;
Ian Romanickf37b1ad2011-10-31 14:31:07 -0700874 }
875
876 /* Some instance had an initializer, so keep track of that. In
877 * this location, all sorts of initializers (constant or
878 * otherwise) will propagate the existence to the variable
879 * stored in the symbol table.
880 */
Tapani Pälli447bb902013-12-12 15:08:59 +0200881 existing->data.has_initializer = true;
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700882 }
Chad Versace7528f142010-11-17 14:34:38 -0800883
Tapani Pällic1d30802013-12-12 12:57:57 +0200884 if (existing->data.invariant != var->data.invariant) {
Ian Romanick586e7412011-07-28 14:04:09 -0700885 linker_error(prog, "declarations for %s `%s' have "
886 "mismatching invariant qualifiers\n",
887 mode_string(var), var->name);
Paul Berryb95d2372013-07-27 11:08:31 -0700888 return;
Chad Versace7528f142010-11-17 14:34:38 -0800889 }
Tapani Pällic1d30802013-12-12 12:57:57 +0200890 if (existing->data.centroid != var->data.centroid) {
Ian Romanick586e7412011-07-28 14:04:09 -0700891 linker_error(prog, "declarations for %s `%s' have "
892 "mismatching centroid qualifiers\n",
893 mode_string(var), var->name);
Paul Berryb95d2372013-07-27 11:08:31 -0700894 return;
Chad Versace61428dd2011-01-10 15:29:30 -0800895 }
Tapani Pällic1d30802013-12-12 12:57:57 +0200896 if (existing->data.sample != var->data.sample) {
Chris Forbes51c5fc82013-11-29 21:26:10 +1300897 linker_error(prog, "declarations for %s `%s` have "
898 "mismatching sample qualifiers\n",
899 mode_string(var), var->name);
900 return;
901 }
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700902 } else
Eric Anholt001eee52010-11-05 06:11:24 -0700903 variables.add_variable(var);
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700904 }
905 }
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700906}
907
908
Ian Romanick37101922010-06-18 19:02:10 -0700909/**
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700910 * Perform validation of uniforms used across multiple shader stages
911 */
Paul Berryb95d2372013-07-27 11:08:31 -0700912void
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700913cross_validate_uniforms(struct gl_shader_program *prog)
914{
Paul Berryb95d2372013-07-27 11:08:31 -0700915 cross_validate_globals(prog, prog->_LinkedShaders,
Paul Berry665b8d72014-01-07 10:11:39 -0800916 MESA_SHADER_STAGES, true);
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700917}
918
Eric Anholtf609cf72012-04-27 13:52:56 -0700919/**
920 * Accumulates the array of prog->UniformBlocks and checks that all
921 * definitons of blocks agree on their contents.
922 */
923static bool
924interstage_cross_validate_uniform_blocks(struct gl_shader_program *prog)
925{
926 unsigned max_num_uniform_blocks = 0;
Paul Berry665b8d72014-01-07 10:11:39 -0800927 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Eric Anholtf609cf72012-04-27 13:52:56 -0700928 if (prog->_LinkedShaders[i])
929 max_num_uniform_blocks += prog->_LinkedShaders[i]->NumUniformBlocks;
930 }
931
Paul Berry665b8d72014-01-07 10:11:39 -0800932 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Eric Anholtf609cf72012-04-27 13:52:56 -0700933 struct gl_shader *sh = prog->_LinkedShaders[i];
934
935 prog->UniformBlockStageIndex[i] = ralloc_array(prog, int,
936 max_num_uniform_blocks);
937 for (unsigned int j = 0; j < max_num_uniform_blocks; j++)
938 prog->UniformBlockStageIndex[i][j] = -1;
939
940 if (sh == NULL)
941 continue;
942
943 for (unsigned int j = 0; j < sh->NumUniformBlocks; j++) {
944 int index = link_cross_validate_uniform_block(prog,
945 &prog->UniformBlocks,
946 &prog->NumUniformBlocks,
947 &sh->UniformBlocks[j]);
948
949 if (index == -1) {
Andres Gomezf9fc3ae2014-11-18 08:43:35 -0700950 linker_error(prog, "uniform block `%s' has mismatching definitions\n",
Eric Anholtf609cf72012-04-27 13:52:56 -0700951 sh->UniformBlocks[j].Name);
952 return false;
953 }
954
955 prog->UniformBlockStageIndex[i][index] = j;
956 }
957 }
958
959 return true;
960}
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700961
Ian Romanick37101922010-06-18 19:02:10 -0700962
Ian Romanick3fb87872010-07-09 14:09:34 -0700963/**
964 * Populates a shaders symbol table with all global declarations
965 */
966static void
967populate_symbol_table(gl_shader *sh)
968{
969 sh->symbols = new(sh) glsl_symbol_table;
970
Matt Turner4d784462014-06-24 21:34:05 -0700971 foreach_in_list(ir_instruction, inst, sh->ir) {
Ian Romanick3fb87872010-07-09 14:09:34 -0700972 ir_variable *var;
973 ir_function *func;
974
975 if ((func = inst->as_function()) != NULL) {
Eric Anholte8f5ebf2010-11-05 06:08:45 -0700976 sh->symbols->add_function(func);
Ian Romanick3fb87872010-07-09 14:09:34 -0700977 } else if ((var = inst->as_variable()) != NULL) {
Ian Romanicka9948242014-07-08 18:53:09 -0700978 if (var->data.mode != ir_var_temporary)
979 sh->symbols->add_variable(var);
Ian Romanick3fb87872010-07-09 14:09:34 -0700980 }
981 }
982}
983
984
985/**
Ian Romanick31a97862010-07-12 18:48:50 -0700986 * Remap variables referenced in an instruction tree
987 *
988 * This is used when instruction trees are cloned from one shader and placed in
989 * another. These trees will contain references to \c ir_variable nodes that
990 * do not exist in the target shader. This function finds these \c ir_variable
991 * references and replaces the references with matching variables in the target
992 * shader.
993 *
994 * If there is no matching variable in the target shader, a clone of the
995 * \c ir_variable is made and added to the target shader. The new variable is
996 * added to \b both the instruction stream and the symbol table.
997 *
998 * \param inst IR tree that is to be processed.
999 * \param symbols Symbol table containing global scope symbols in the
1000 * linked shader.
1001 * \param instructions Instruction stream where new variable declarations
1002 * should be added.
1003 */
1004void
Eric Anholt8273bd42010-08-04 12:34:56 -07001005remap_variables(ir_instruction *inst, struct gl_shader *target,
1006 hash_table *temps)
Ian Romanick31a97862010-07-12 18:48:50 -07001007{
1008 class remap_visitor : public ir_hierarchical_visitor {
1009 public:
Eric Anholt8273bd42010-08-04 12:34:56 -07001010 remap_visitor(struct gl_shader *target,
Ian Romanick7e2aa912010-07-19 17:12:42 -07001011 hash_table *temps)
Ian Romanick31a97862010-07-12 18:48:50 -07001012 {
Eric Anholt8273bd42010-08-04 12:34:56 -07001013 this->target = target;
1014 this->symbols = target->symbols;
1015 this->instructions = target->ir;
Ian Romanick7e2aa912010-07-19 17:12:42 -07001016 this->temps = temps;
Ian Romanick31a97862010-07-12 18:48:50 -07001017 }
1018
1019 virtual ir_visitor_status visit(ir_dereference_variable *ir)
1020 {
Tapani Pälli33ee2c62013-12-12 13:51:01 +02001021 if (ir->var->data.mode == ir_var_temporary) {
Ian Romanick7e2aa912010-07-19 17:12:42 -07001022 ir_variable *var = (ir_variable *) hash_table_find(temps, ir->var);
1023
1024 assert(var != NULL);
1025 ir->var = var;
1026 return visit_continue;
1027 }
1028
Ian Romanick31a97862010-07-12 18:48:50 -07001029 ir_variable *const existing =
1030 this->symbols->get_variable(ir->var->name);
1031 if (existing != NULL)
1032 ir->var = existing;
1033 else {
Eric Anholt8273bd42010-08-04 12:34:56 -07001034 ir_variable *copy = ir->var->clone(this->target, NULL);
Ian Romanick31a97862010-07-12 18:48:50 -07001035
Eric Anholt001eee52010-11-05 06:11:24 -07001036 this->symbols->add_variable(copy);
Ian Romanick31a97862010-07-12 18:48:50 -07001037 this->instructions->push_head(copy);
Ian Romanick7e2aa912010-07-19 17:12:42 -07001038 ir->var = copy;
Ian Romanick31a97862010-07-12 18:48:50 -07001039 }
1040
1041 return visit_continue;
1042 }
1043
1044 private:
Eric Anholt8273bd42010-08-04 12:34:56 -07001045 struct gl_shader *target;
Ian Romanick31a97862010-07-12 18:48:50 -07001046 glsl_symbol_table *symbols;
1047 exec_list *instructions;
Ian Romanick7e2aa912010-07-19 17:12:42 -07001048 hash_table *temps;
Ian Romanick31a97862010-07-12 18:48:50 -07001049 };
1050
Eric Anholt8273bd42010-08-04 12:34:56 -07001051 remap_visitor v(target, temps);
Ian Romanick31a97862010-07-12 18:48:50 -07001052
1053 inst->accept(&v);
1054}
1055
1056
1057/**
1058 * Move non-declarations from one instruction stream to another
1059 *
1060 * The intended usage pattern of this function is to pass the pointer to the
Eric Anholt62c47632010-07-29 13:52:25 -07001061 * 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 -07001062 * pointer) for \c last and \c false for \c make_copies on the first
1063 * call. Successive calls pass the return value of the previous call for
1064 * \c last and \c true for \c make_copies.
1065 *
1066 * \param instructions Source instruction stream
1067 * \param last Instruction after which new instructions should be
1068 * inserted in the target instruction stream
1069 * \param make_copies Flag selecting whether instructions in \c instructions
1070 * should be copied (via \c ir_instruction::clone) into the
1071 * target list or moved.
1072 *
1073 * \return
1074 * The new "last" instruction in the target instruction stream. This pointer
1075 * is suitable for use as the \c last parameter of a later call to this
1076 * function.
1077 */
1078exec_node *
1079move_non_declarations(exec_list *instructions, exec_node *last,
1080 bool make_copies, gl_shader *target)
1081{
Ian Romanick7e2aa912010-07-19 17:12:42 -07001082 hash_table *temps = NULL;
1083
1084 if (make_copies)
1085 temps = hash_table_ctor(0, hash_table_pointer_hash,
1086 hash_table_pointer_compare);
1087
Matt Turnerc6a16f62014-06-24 21:58:35 -07001088 foreach_in_list_safe(ir_instruction, inst, instructions) {
Ian Romanick7e2aa912010-07-19 17:12:42 -07001089 if (inst->as_function())
Ian Romanick31a97862010-07-12 18:48:50 -07001090 continue;
1091
Ian Romanick7e2aa912010-07-19 17:12:42 -07001092 ir_variable *var = inst->as_variable();
Tapani Pälli33ee2c62013-12-12 13:51:01 +02001093 if ((var != NULL) && (var->data.mode != ir_var_temporary))
Ian Romanick7e2aa912010-07-19 17:12:42 -07001094 continue;
1095
1096 assert(inst->as_assignment()
Kenneth Graunked884f602012-03-20 15:56:37 -07001097 || inst->as_call()
Kenneth Graunkeb45a68e2012-10-24 13:17:24 -07001098 || inst->as_if() /* for initializers with the ?: operator */
Tapani Pälli33ee2c62013-12-12 13:51:01 +02001099 || ((var != NULL) && (var->data.mode == ir_var_temporary)));
Ian Romanick31a97862010-07-12 18:48:50 -07001100
1101 if (make_copies) {
Eric Anholt8273bd42010-08-04 12:34:56 -07001102 inst = inst->clone(target, NULL);
Ian Romanick7e2aa912010-07-19 17:12:42 -07001103
1104 if (var != NULL)
1105 hash_table_insert(temps, inst, var);
1106 else
Eric Anholt8273bd42010-08-04 12:34:56 -07001107 remap_variables(inst, target, temps);
Ian Romanick31a97862010-07-12 18:48:50 -07001108 } else {
1109 inst->remove();
1110 }
1111
1112 last->insert_after(inst);
1113 last = inst;
1114 }
1115
Ian Romanick7e2aa912010-07-19 17:12:42 -07001116 if (make_copies)
1117 hash_table_dtor(temps);
1118
Ian Romanick31a97862010-07-12 18:48:50 -07001119 return last;
1120}
1121
1122/**
Ian Romanick15ce87e2010-07-09 15:28:22 -07001123 * Get the function signature for main from a shader
1124 */
Ian Romanick04d33232014-06-19 12:05:20 -07001125ir_function_signature *
1126link_get_main_function_signature(gl_shader *sh)
Ian Romanick15ce87e2010-07-09 15:28:22 -07001127{
1128 ir_function *const f = sh->symbols->get_function("main");
1129 if (f != NULL) {
1130 exec_list void_parameters;
1131
1132 /* Look for the 'void main()' signature and ensure that it's defined.
1133 * This keeps the linker from accidentally pick a shader that just
1134 * contains a prototype for main.
1135 *
1136 * We don't have to check for multiple definitions of main (in multiple
1137 * shaders) because that would have already been caught above.
1138 */
Kenneth Graunke21129d42014-07-24 14:05:40 -07001139 ir_function_signature *sig =
1140 f->matching_signature(NULL, &void_parameters, false);
Ian Romanick15ce87e2010-07-09 15:28:22 -07001141 if ((sig != NULL) && sig->is_defined) {
1142 return sig;
1143 }
1144 }
1145
1146 return NULL;
1147}
1148
1149
1150/**
Brian Paul84a12732012-02-02 20:10:40 -07001151 * This class is only used in link_intrastage_shaders() below but declaring
1152 * it inside that function leads to compiler warnings with some versions of
1153 * gcc.
1154 */
1155class array_sizing_visitor : public ir_hierarchical_visitor {
1156public:
Paul Berry15e05b92013-09-25 14:07:37 -07001157 array_sizing_visitor()
1158 : mem_ctx(ralloc_context(NULL)),
1159 unnamed_interfaces(hash_table_ctor(0, hash_table_pointer_hash,
1160 hash_table_pointer_compare))
1161 {
1162 }
1163
1164 ~array_sizing_visitor()
1165 {
1166 hash_table_dtor(this->unnamed_interfaces);
1167 ralloc_free(this->mem_ctx);
1168 }
1169
Brian Paul84a12732012-02-02 20:10:40 -07001170 virtual ir_visitor_status visit(ir_variable *var)
1171 {
Tapani Pälli447bb902013-12-12 15:08:59 +02001172 fixup_type(&var->type, var->data.max_array_access);
Paul Berrye2266692013-09-23 10:44:19 -07001173 if (var->type->is_interface()) {
1174 if (interface_contains_unsized_arrays(var->type)) {
1175 const glsl_type *new_type =
Ian Romanick21df0162014-05-23 18:57:36 -07001176 resize_interface_members(var->type,
1177 var->get_max_ifc_array_access());
Paul Berrye2266692013-09-23 10:44:19 -07001178 var->type = new_type;
1179 var->change_interface_type(new_type);
1180 }
1181 } else if (var->type->is_array() &&
1182 var->type->fields.array->is_interface()) {
1183 if (interface_contains_unsized_arrays(var->type->fields.array)) {
1184 const glsl_type *new_type =
1185 resize_interface_members(var->type->fields.array,
Ian Romanick21df0162014-05-23 18:57:36 -07001186 var->get_max_ifc_array_access());
Paul Berrye2266692013-09-23 10:44:19 -07001187 var->change_interface_type(new_type);
1188 var->type =
1189 glsl_type::get_array_instance(new_type, var->type->length);
1190 }
Paul Berry15e05b92013-09-25 14:07:37 -07001191 } else if (const glsl_type *ifc_type = var->get_interface_type()) {
1192 /* Store a pointer to the variable in the unnamed_interfaces
1193 * hashtable.
1194 */
1195 ir_variable **interface_vars = (ir_variable **)
1196 hash_table_find(this->unnamed_interfaces, ifc_type);
1197 if (interface_vars == NULL) {
1198 interface_vars = rzalloc_array(mem_ctx, ir_variable *,
1199 ifc_type->length);
1200 hash_table_insert(this->unnamed_interfaces, interface_vars,
1201 ifc_type);
1202 }
1203 unsigned index = ifc_type->field_index(var->name);
1204 assert(index < ifc_type->length);
1205 assert(interface_vars[index] == NULL);
1206 interface_vars[index] = var;
Brian Paul84a12732012-02-02 20:10:40 -07001207 }
1208 return visit_continue;
1209 }
Paul Berrye2266692013-09-23 10:44:19 -07001210
Paul Berry15e05b92013-09-25 14:07:37 -07001211 /**
1212 * For each unnamed interface block that was discovered while running the
1213 * visitor, adjust the interface type to reflect the newly assigned array
1214 * sizes, and fix up the ir_variable nodes to point to the new interface
1215 * type.
1216 */
1217 void fixup_unnamed_interface_types()
1218 {
1219 hash_table_call_foreach(this->unnamed_interfaces,
1220 fixup_unnamed_interface_type, NULL);
1221 }
1222
Paul Berrye2266692013-09-23 10:44:19 -07001223private:
1224 /**
1225 * If the type pointed to by \c type represents an unsized array, replace
1226 * it with a sized array whose size is determined by max_array_access.
1227 */
1228 static void fixup_type(const glsl_type **type, unsigned max_array_access)
1229 {
Timothy Arcerib59c5922013-10-23 21:31:27 +11001230 if ((*type)->is_unsized_array()) {
Paul Berrye2266692013-09-23 10:44:19 -07001231 *type = glsl_type::get_array_instance((*type)->fields.array,
1232 max_array_access + 1);
1233 assert(*type != NULL);
1234 }
1235 }
1236
1237 /**
1238 * Determine whether the given interface type contains unsized arrays (if
1239 * it doesn't, array_sizing_visitor doesn't need to process it).
1240 */
1241 static bool interface_contains_unsized_arrays(const glsl_type *type)
1242 {
1243 for (unsigned i = 0; i < type->length; i++) {
1244 const glsl_type *elem_type = type->fields.structure[i].type;
Timothy Arcerib59c5922013-10-23 21:31:27 +11001245 if (elem_type->is_unsized_array())
Paul Berrye2266692013-09-23 10:44:19 -07001246 return true;
1247 }
1248 return false;
1249 }
1250
1251 /**
1252 * Create a new interface type based on the given type, with unsized arrays
1253 * replaced by sized arrays whose size is determined by
1254 * max_ifc_array_access.
1255 */
1256 static const glsl_type *
1257 resize_interface_members(const glsl_type *type,
1258 const unsigned *max_ifc_array_access)
1259 {
1260 unsigned num_fields = type->length;
1261 glsl_struct_field *fields = new glsl_struct_field[num_fields];
1262 memcpy(fields, type->fields.structure,
1263 num_fields * sizeof(*fields));
1264 for (unsigned i = 0; i < num_fields; i++) {
1265 fixup_type(&fields[i].type, max_ifc_array_access[i]);
1266 }
1267 glsl_interface_packing packing =
1268 (glsl_interface_packing) type->interface_packing;
1269 const glsl_type *new_ifc_type =
1270 glsl_type::get_interface_instance(fields, num_fields,
1271 packing, type->name);
1272 delete [] fields;
1273 return new_ifc_type;
1274 }
Paul Berry15e05b92013-09-25 14:07:37 -07001275
1276 static void fixup_unnamed_interface_type(const void *key, void *data,
1277 void *)
1278 {
1279 const glsl_type *ifc_type = (const glsl_type *) key;
1280 ir_variable **interface_vars = (ir_variable **) data;
1281 unsigned num_fields = ifc_type->length;
1282 glsl_struct_field *fields = new glsl_struct_field[num_fields];
1283 memcpy(fields, ifc_type->fields.structure,
1284 num_fields * sizeof(*fields));
1285 bool interface_type_changed = false;
1286 for (unsigned i = 0; i < num_fields; i++) {
1287 if (interface_vars[i] != NULL &&
1288 fields[i].type != interface_vars[i]->type) {
1289 fields[i].type = interface_vars[i]->type;
1290 interface_type_changed = true;
1291 }
1292 }
1293 if (!interface_type_changed) {
1294 delete [] fields;
1295 return;
1296 }
1297 glsl_interface_packing packing =
1298 (glsl_interface_packing) ifc_type->interface_packing;
1299 const glsl_type *new_ifc_type =
1300 glsl_type::get_interface_instance(fields, num_fields, packing,
1301 ifc_type->name);
1302 delete [] fields;
1303 for (unsigned i = 0; i < num_fields; i++) {
1304 if (interface_vars[i] != NULL)
1305 interface_vars[i]->change_interface_type(new_ifc_type);
1306 }
1307 }
1308
1309 /**
1310 * Memory context used to allocate the data in \c unnamed_interfaces.
1311 */
1312 void *mem_ctx;
1313
1314 /**
1315 * Hash table from const glsl_type * to an array of ir_variable *'s
1316 * pointing to the ir_variables constituting each unnamed interface block.
1317 */
1318 hash_table *unnamed_interfaces;
Brian Paul84a12732012-02-02 20:10:40 -07001319};
1320
Brian Paul84a12732012-02-02 20:10:40 -07001321/**
Anuj Phogat35f11e82014-02-05 15:01:58 -08001322 * Performs the cross-validation of layout qualifiers specified in
1323 * redeclaration of gl_FragCoord for the attached fragment shaders,
1324 * and propagates them to the linked FS and linked shader program.
1325 */
1326static void
1327link_fs_input_layout_qualifiers(struct gl_shader_program *prog,
1328 struct gl_shader *linked_shader,
1329 struct gl_shader **shader_list,
1330 unsigned num_shaders)
1331{
1332 linked_shader->redeclares_gl_fragcoord = false;
1333 linked_shader->uses_gl_fragcoord = false;
1334 linked_shader->origin_upper_left = false;
1335 linked_shader->pixel_center_integer = false;
1336
Anuj Phogat9bcb0a82014-02-10 14:12:40 -08001337 if (linked_shader->Stage != MESA_SHADER_FRAGMENT ||
1338 (prog->Version < 150 && !prog->ARB_fragment_coord_conventions_enable))
Anuj Phogat35f11e82014-02-05 15:01:58 -08001339 return;
1340
1341 for (unsigned i = 0; i < num_shaders; i++) {
1342 struct gl_shader *shader = shader_list[i];
1343 /* From the GLSL 1.50 spec, page 39:
1344 *
1345 * "If gl_FragCoord is redeclared in any fragment shader in a program,
1346 * it must be redeclared in all the fragment shaders in that program
1347 * that have a static use gl_FragCoord."
1348 *
1349 * Exclude the case when one of the 'linked_shader' or 'shader' redeclares
1350 * gl_FragCoord with no layout qualifiers but the other one doesn't
1351 * redeclare it. If we strictly follow GLSL 1.50 spec's language, it
1352 * should be a link error. But, generating link error for this case will
1353 * be a wrong behaviour which spec didn't intend to do and it could also
1354 * break some applications.
1355 */
1356 if ((linked_shader->redeclares_gl_fragcoord
1357 && !shader->redeclares_gl_fragcoord
1358 && shader->uses_gl_fragcoord
1359 && (linked_shader->origin_upper_left
1360 || linked_shader->pixel_center_integer))
1361 || (shader->redeclares_gl_fragcoord
1362 && !linked_shader->redeclares_gl_fragcoord
1363 && linked_shader->uses_gl_fragcoord
1364 && (shader->origin_upper_left
1365 || shader->pixel_center_integer))) {
1366 linker_error(prog, "fragment shader defined with conflicting "
1367 "layout qualifiers for gl_FragCoord\n");
1368 }
1369
1370 /* From the GLSL 1.50 spec, page 39:
1371 *
1372 * "All redeclarations of gl_FragCoord in all fragment shaders in a
1373 * single program must have the same set of qualifiers."
1374 */
1375 if (linked_shader->redeclares_gl_fragcoord && shader->redeclares_gl_fragcoord
1376 && (shader->origin_upper_left != linked_shader->origin_upper_left
1377 || shader->pixel_center_integer != linked_shader->pixel_center_integer)) {
1378 linker_error(prog, "fragment shader defined with conflicting "
1379 "layout qualifiers for gl_FragCoord\n");
1380 }
1381
1382 /* Update the linked shader state.  Note that uses_gl_fragcoord should
1383 * accumulate the results.  The other values should replace.  If there
1384 * are multiple redeclarations, all the fields except uses_gl_fragcoord
1385 * are already known to be the same.
1386 */
1387 if (shader->redeclares_gl_fragcoord || shader->uses_gl_fragcoord) {
1388 linked_shader->redeclares_gl_fragcoord =
1389 shader->redeclares_gl_fragcoord;
1390 linked_shader->uses_gl_fragcoord = linked_shader->uses_gl_fragcoord
1391 || shader->uses_gl_fragcoord;
1392 linked_shader->origin_upper_left = shader->origin_upper_left;
1393 linked_shader->pixel_center_integer = shader->pixel_center_integer;
1394 }
1395 }
1396}
1397
1398/**
Eric Anholt6065a872013-06-12 18:12:40 -07001399 * Performs the cross-validation of geometry shader max_vertices and
1400 * primitive type layout qualifiers for the attached geometry shaders,
1401 * and propagates them to the linked GS and linked shader program.
1402 */
1403static void
1404link_gs_inout_layout_qualifiers(struct gl_shader_program *prog,
1405 struct gl_shader *linked_shader,
1406 struct gl_shader **shader_list,
1407 unsigned num_shaders)
1408{
1409 linked_shader->Geom.VerticesOut = 0;
Jordan Justen31340202014-01-25 02:17:21 -08001410 linked_shader->Geom.Invocations = 0;
Eric Anholt6065a872013-06-12 18:12:40 -07001411 linked_shader->Geom.InputType = PRIM_UNKNOWN;
1412 linked_shader->Geom.OutputType = PRIM_UNKNOWN;
1413
1414 /* No in/out qualifiers defined for anything but GLSL 1.50+
1415 * geometry shaders so far.
1416 */
Paul Berrye3b86f02014-01-07 10:58:56 -08001417 if (linked_shader->Stage != MESA_SHADER_GEOMETRY || prog->Version < 150)
Eric Anholt6065a872013-06-12 18:12:40 -07001418 return;
1419
1420 /* From the GLSL 1.50 spec, page 46:
1421 *
1422 * "All geometry shader output layout declarations in a program
1423 * must declare the same layout and same value for
1424 * max_vertices. There must be at least one geometry output
1425 * layout declaration somewhere in a program, but not all
1426 * geometry shaders (compilation units) are required to
1427 * declare it."
1428 */
1429
1430 for (unsigned i = 0; i < num_shaders; i++) {
1431 struct gl_shader *shader = shader_list[i];
1432
1433 if (shader->Geom.InputType != PRIM_UNKNOWN) {
1434 if (linked_shader->Geom.InputType != PRIM_UNKNOWN &&
1435 linked_shader->Geom.InputType != shader->Geom.InputType) {
1436 linker_error(prog, "geometry shader defined with conflicting "
1437 "input types\n");
1438 return;
1439 }
1440 linked_shader->Geom.InputType = shader->Geom.InputType;
1441 }
1442
1443 if (shader->Geom.OutputType != PRIM_UNKNOWN) {
1444 if (linked_shader->Geom.OutputType != PRIM_UNKNOWN &&
1445 linked_shader->Geom.OutputType != shader->Geom.OutputType) {
1446 linker_error(prog, "geometry shader defined with conflicting "
1447 "output types\n");
1448 return;
1449 }
1450 linked_shader->Geom.OutputType = shader->Geom.OutputType;
1451 }
1452
1453 if (shader->Geom.VerticesOut != 0) {
1454 if (linked_shader->Geom.VerticesOut != 0 &&
1455 linked_shader->Geom.VerticesOut != shader->Geom.VerticesOut) {
1456 linker_error(prog, "geometry shader defined with conflicting "
1457 "output vertex count (%d and %d)\n",
1458 linked_shader->Geom.VerticesOut,
1459 shader->Geom.VerticesOut);
1460 return;
1461 }
1462 linked_shader->Geom.VerticesOut = shader->Geom.VerticesOut;
1463 }
Jordan Justen31340202014-01-25 02:17:21 -08001464
1465 if (shader->Geom.Invocations != 0) {
1466 if (linked_shader->Geom.Invocations != 0 &&
1467 linked_shader->Geom.Invocations != shader->Geom.Invocations) {
1468 linker_error(prog, "geometry shader defined with conflicting "
1469 "invocation count (%d and %d)\n",
1470 linked_shader->Geom.Invocations,
1471 shader->Geom.Invocations);
1472 return;
1473 }
1474 linked_shader->Geom.Invocations = shader->Geom.Invocations;
1475 }
Eric Anholt6065a872013-06-12 18:12:40 -07001476 }
1477
1478 /* Just do the intrastage -> interstage propagation right now,
1479 * since we already know we're in the right type of shader program
1480 * for doing it.
1481 */
1482 if (linked_shader->Geom.InputType == PRIM_UNKNOWN) {
1483 linker_error(prog,
1484 "geometry shader didn't declare primitive input type\n");
1485 return;
1486 }
1487 prog->Geom.InputType = linked_shader->Geom.InputType;
1488
1489 if (linked_shader->Geom.OutputType == PRIM_UNKNOWN) {
1490 linker_error(prog,
1491 "geometry shader didn't declare primitive output type\n");
1492 return;
1493 }
1494 prog->Geom.OutputType = linked_shader->Geom.OutputType;
1495
1496 if (linked_shader->Geom.VerticesOut == 0) {
1497 linker_error(prog,
1498 "geometry shader didn't declare max_vertices\n");
1499 return;
1500 }
1501 prog->Geom.VerticesOut = linked_shader->Geom.VerticesOut;
Jordan Justen31340202014-01-25 02:17:21 -08001502
1503 if (linked_shader->Geom.Invocations == 0)
1504 linked_shader->Geom.Invocations = 1;
1505
1506 prog->Geom.Invocations = linked_shader->Geom.Invocations;
Eric Anholt6065a872013-06-12 18:12:40 -07001507}
1508
Paul Berry28ce6042014-01-08 11:59:28 -08001509
1510/**
1511 * Perform cross-validation of compute shader local_size_{x,y,z} layout
1512 * qualifiers for the attached compute shaders, and propagate them to the
1513 * linked CS and linked shader program.
1514 */
1515static void
1516link_cs_input_layout_qualifiers(struct gl_shader_program *prog,
1517 struct gl_shader *linked_shader,
1518 struct gl_shader **shader_list,
1519 unsigned num_shaders)
1520{
1521 for (int i = 0; i < 3; i++)
1522 linked_shader->Comp.LocalSize[i] = 0;
1523
1524 /* This function is called for all shader stages, but it only has an effect
1525 * for compute shaders.
1526 */
1527 if (linked_shader->Stage != MESA_SHADER_COMPUTE)
1528 return;
1529
1530 /* From the ARB_compute_shader spec, in the section describing local size
1531 * declarations:
1532 *
1533 * If multiple compute shaders attached to a single program object
1534 * declare local work-group size, the declarations must be identical;
1535 * otherwise a link-time error results. Furthermore, if a program
1536 * object contains any compute shaders, at least one must contain an
1537 * input layout qualifier specifying the local work sizes of the
1538 * program, or a link-time error will occur.
1539 */
1540 for (unsigned sh = 0; sh < num_shaders; sh++) {
1541 struct gl_shader *shader = shader_list[sh];
1542
1543 if (shader->Comp.LocalSize[0] != 0) {
1544 if (linked_shader->Comp.LocalSize[0] != 0) {
1545 for (int i = 0; i < 3; i++) {
1546 if (linked_shader->Comp.LocalSize[i] !=
1547 shader->Comp.LocalSize[i]) {
1548 linker_error(prog, "compute shader defined with conflicting "
1549 "local sizes\n");
1550 return;
1551 }
1552 }
1553 }
1554 for (int i = 0; i < 3; i++)
1555 linked_shader->Comp.LocalSize[i] = shader->Comp.LocalSize[i];
1556 }
1557 }
1558
1559 /* Just do the intrastage -> interstage propagation right now,
1560 * since we already know we're in the right type of shader program
1561 * for doing it.
1562 */
1563 if (linked_shader->Comp.LocalSize[0] == 0) {
1564 linker_error(prog, "compute shader didn't declare local size\n");
1565 return;
1566 }
1567 for (int i = 0; i < 3; i++)
1568 prog->Comp.LocalSize[i] = linked_shader->Comp.LocalSize[i];
1569}
1570
1571
Eric Anholt6065a872013-06-12 18:12:40 -07001572/**
Ian Romanick3fb87872010-07-09 14:09:34 -07001573 * Combine a group of shaders for a single stage to generate a linked shader
1574 *
1575 * \note
1576 * If this function is supplied a single shader, it is cloned, and the new
1577 * shader is returned.
1578 */
1579static struct gl_shader *
Kenneth Graunke2da02e72010-11-17 11:03:57 -08001580link_intrastage_shaders(void *mem_ctx,
1581 struct gl_context *ctx,
Eric Anholt5d0f4302010-08-18 12:02:35 -07001582 struct gl_shader_program *prog,
Ian Romanick3fb87872010-07-09 14:09:34 -07001583 struct gl_shader **shader_list,
1584 unsigned num_shaders)
1585{
Eric Anholtf609cf72012-04-27 13:52:56 -07001586 struct gl_uniform_block *uniform_blocks = NULL;
Eric Anholtf609cf72012-04-27 13:52:56 -07001587
Ian Romanick13f782c2010-06-29 18:53:38 -07001588 /* Check that global variables defined in multiple shaders are consistent.
1589 */
Paul Berryb95d2372013-07-27 11:08:31 -07001590 cross_validate_globals(prog, shader_list, num_shaders, false);
1591 if (!prog->LinkStatus)
Ian Romanick13f782c2010-06-29 18:53:38 -07001592 return NULL;
1593
Jordan Justen4a0bcd92013-05-20 23:42:49 -07001594 /* Check that interface blocks defined in multiple shaders are consistent.
1595 */
Paul Berryb95d2372013-07-27 11:08:31 -07001596 validate_intrastage_interface_blocks(prog, (const gl_shader **)shader_list,
1597 num_shaders);
1598 if (!prog->LinkStatus)
Jordan Justen4a0bcd92013-05-20 23:42:49 -07001599 return NULL;
1600
Paul Berry4682b9b2013-07-27 15:07:08 -07001601 /* Link up uniform blocks defined within this stage. */
1602 const unsigned num_uniform_blocks =
Ian Romanick514f8c72013-01-22 01:09:16 -05001603 link_uniform_blocks(mem_ctx, prog, shader_list, num_shaders,
1604 &uniform_blocks);
Juha-Pekka Heikkila088da372014-04-03 17:06:42 +03001605 if (!prog->LinkStatus)
1606 return NULL;
Eric Anholtf609cf72012-04-27 13:52:56 -07001607
Ian Romanick13f782c2010-06-29 18:53:38 -07001608 /* Check that there is only a single definition of each function signature
1609 * across all shaders.
1610 */
1611 for (unsigned i = 0; i < (num_shaders - 1); i++) {
Matt Turner4d784462014-06-24 21:34:05 -07001612 foreach_in_list(ir_instruction, node, shader_list[i]->ir) {
1613 ir_function *const f = node->as_function();
Ian Romanick13f782c2010-06-29 18:53:38 -07001614
1615 if (f == NULL)
1616 continue;
1617
1618 for (unsigned j = i + 1; j < num_shaders; j++) {
1619 ir_function *const other =
1620 shader_list[j]->symbols->get_function(f->name);
1621
1622 /* If the other shader has no function (and therefore no function
1623 * signatures) with the same name, skip to the next shader.
1624 */
1625 if (other == NULL)
1626 continue;
1627
Matt Turner4d784462014-06-24 21:34:05 -07001628 foreach_in_list(ir_function_signature, sig, &f->signatures) {
Kenneth Graunke4b0bac02013-08-30 16:12:55 -07001629 if (!sig->is_defined || sig->is_builtin())
Ian Romanick13f782c2010-06-29 18:53:38 -07001630 continue;
1631
1632 ir_function_signature *other_sig =
Kenneth Graunke3e820e32013-08-30 23:11:55 -07001633 other->exact_matching_signature(NULL, &sig->parameters);
Ian Romanick13f782c2010-06-29 18:53:38 -07001634
1635 if ((other_sig != NULL) && other_sig->is_defined
Kenneth Graunke4b0bac02013-08-30 16:12:55 -07001636 && !other_sig->is_builtin()) {
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07001637 linker_error(prog, "function `%s' is multiply defined\n",
Ian Romanick586e7412011-07-28 14:04:09 -07001638 f->name);
Ian Romanick13f782c2010-06-29 18:53:38 -07001639 return NULL;
1640 }
1641 }
1642 }
1643 }
1644 }
1645
1646 /* Find the shader that defines main, and make a clone of it.
1647 *
1648 * Starting with the clone, search for undefined references. If one is
1649 * found, find the shader that defines it. Clone the reference and add
1650 * it to the shader. Repeat until there are no undefined references or
1651 * until a reference cannot be resolved.
1652 */
Ian Romanick15ce87e2010-07-09 15:28:22 -07001653 gl_shader *main = NULL;
1654 for (unsigned i = 0; i < num_shaders; i++) {
Ian Romanick04d33232014-06-19 12:05:20 -07001655 if (link_get_main_function_signature(shader_list[i]) != NULL) {
Ian Romanick15ce87e2010-07-09 15:28:22 -07001656 main = shader_list[i];
1657 break;
1658 }
1659 }
Ian Romanick13f782c2010-06-29 18:53:38 -07001660
Ian Romanick15ce87e2010-07-09 15:28:22 -07001661 if (main == NULL) {
Ian Romanick586e7412011-07-28 14:04:09 -07001662 linker_error(prog, "%s shader lacks `main'\n",
Paul Berrye3b86f02014-01-07 10:58:56 -08001663 _mesa_shader_stage_to_string(shader_list[0]->Stage));
Ian Romanick15ce87e2010-07-09 15:28:22 -07001664 return NULL;
1665 }
1666
Ian Romanick4a455952010-10-13 15:13:02 -07001667 gl_shader *linked = ctx->Driver.NewShader(NULL, 0, main->Type);
Ian Romanick15ce87e2010-07-09 15:28:22 -07001668 linked->ir = new(linked) exec_list;
Kenneth Graunke2da02e72010-11-17 11:03:57 -08001669 clone_ir_list(mem_ctx, linked->ir, main->ir);
Ian Romanick15ce87e2010-07-09 15:28:22 -07001670
Eric Anholtf609cf72012-04-27 13:52:56 -07001671 linked->UniformBlocks = uniform_blocks;
1672 linked->NumUniformBlocks = num_uniform_blocks;
1673 ralloc_steal(linked, linked->UniformBlocks);
1674
Anuj Phogat35f11e82014-02-05 15:01:58 -08001675 link_fs_input_layout_qualifiers(prog, linked, shader_list, num_shaders);
Eric Anholt6065a872013-06-12 18:12:40 -07001676 link_gs_inout_layout_qualifiers(prog, linked, shader_list, num_shaders);
Paul Berry28ce6042014-01-08 11:59:28 -08001677 link_cs_input_layout_qualifiers(prog, linked, shader_list, num_shaders);
Eric Anholt6065a872013-06-12 18:12:40 -07001678
Ian Romanick15ce87e2010-07-09 15:28:22 -07001679 populate_symbol_table(linked);
Ian Romanick13f782c2010-06-29 18:53:38 -07001680
Andres Gomezb0e0c262014-10-24 16:51:09 +03001681 /* The pointer to the main function in the final linked shader (i.e., the
Ian Romanick31a97862010-07-12 18:48:50 -07001682 * copy of the original shader that contained the main function).
1683 */
Ian Romanick04d33232014-06-19 12:05:20 -07001684 ir_function_signature *const main_sig =
1685 link_get_main_function_signature(linked);
Ian Romanick31a97862010-07-12 18:48:50 -07001686
1687 /* Move any instructions other than variable declarations or function
1688 * declarations into main.
1689 */
Ian Romanick9303e352010-07-19 12:33:54 -07001690 exec_node *insertion_point =
1691 move_non_declarations(linked->ir, (exec_node *) &main_sig->body, false,
1692 linked);
1693
Ian Romanick31a97862010-07-12 18:48:50 -07001694 for (unsigned i = 0; i < num_shaders; i++) {
Ian Romanick9303e352010-07-19 12:33:54 -07001695 if (shader_list[i] == main)
1696 continue;
1697
Ian Romanick31a97862010-07-12 18:48:50 -07001698 insertion_point = move_non_declarations(shader_list[i]->ir,
Ian Romanick9303e352010-07-19 12:33:54 -07001699 insertion_point, true, linked);
Ian Romanick31a97862010-07-12 18:48:50 -07001700 }
1701
Kenneth Graunke5b331f62013-11-23 12:11:34 -08001702 /* Check if any shader needs built-in functions. */
1703 bool need_builtins = false;
Ian Romanickd5be2ac2010-07-20 11:29:46 -07001704 for (unsigned i = 0; i < num_shaders; i++) {
Kenneth Graunke5b331f62013-11-23 12:11:34 -08001705 if (shader_list[i]->uses_builtin_functions) {
1706 need_builtins = true;
1707 break;
1708 }
Ian Romanickd5be2ac2010-07-20 11:29:46 -07001709 }
1710
Kenneth Graunke5b331f62013-11-23 12:11:34 -08001711 bool ok;
1712 if (need_builtins) {
1713 /* Make a temporary array one larger than shader_list, which will hold
1714 * the built-in function shader as well.
1715 */
1716 gl_shader **linking_shaders = (gl_shader **)
1717 calloc(num_shaders + 1, sizeof(gl_shader *));
Ian Romanickd5be2ac2010-07-20 11:29:46 -07001718
Juha-Pekka Heikkilad2f04422014-05-07 16:20:12 +03001719 ok = linking_shaders != NULL;
Kenneth Graunke5b331f62013-11-23 12:11:34 -08001720
Juha-Pekka Heikkilad2f04422014-05-07 16:20:12 +03001721 if (ok) {
1722 memcpy(linking_shaders, shader_list, num_shaders * sizeof(gl_shader *));
1723 linking_shaders[num_shaders] = _mesa_glsl_get_builtin_function_shader();
1724
1725 ok = link_function_calls(prog, linked, linking_shaders, num_shaders + 1);
1726
1727 free(linking_shaders);
1728 } else {
1729 _mesa_error_no_memory(__func__);
1730 }
Kenneth Graunke5b331f62013-11-23 12:11:34 -08001731 } else {
1732 ok = link_function_calls(prog, linked, shader_list, num_shaders);
1733 }
1734
1735
1736 if (!ok) {
1737 ctx->Driver.DeleteShader(ctx, linked);
Kenneth Graunke7d2423a2013-08-02 00:35:05 -07001738 return NULL;
Ian Romanick4a455952010-10-13 15:13:02 -07001739 }
Ian Romanickd5be2ac2010-07-20 11:29:46 -07001740
Paul Berryc148ef62011-08-03 15:37:01 -07001741 /* At this point linked should contain all of the linked IR, so
1742 * validate it to make sure nothing went wrong.
1743 */
Kenneth Graunke7d2423a2013-08-02 00:35:05 -07001744 validate_ir_tree(linked->ir);
Paul Berryc148ef62011-08-03 15:37:01 -07001745
Paul Berry7cfefe62013-07-30 21:13:48 -07001746 /* Set the size of geometry shader input arrays */
Paul Berrye3b86f02014-01-07 10:58:56 -08001747 if (linked->Stage == MESA_SHADER_GEOMETRY) {
Paul Berry7cfefe62013-07-30 21:13:48 -07001748 unsigned num_vertices = vertices_per_prim(prog->Geom.InputType);
1749 geom_array_resize_visitor input_resize_visitor(num_vertices, prog);
Matt Turner4d784462014-06-24 21:34:05 -07001750 foreach_in_list(ir_instruction, ir, linked->ir) {
Paul Berry7cfefe62013-07-30 21:13:48 -07001751 ir->accept(&input_resize_visitor);
1752 }
1753 }
1754
Ian Romanickec08b5e2014-06-19 12:06:42 -07001755 if (ctx->Const.VertexID_is_zero_based)
1756 lower_vertex_id(linked);
1757
Ian Romanickc87e9ef2011-01-25 12:04:08 -08001758 /* Make a pass over all variable declarations to ensure that arrays with
Ian Romanick6f539212010-12-07 18:30:33 -08001759 * unspecified sizes have a size specified. The size is inferred from the
1760 * max_array_access field.
1761 */
Kenneth Graunke7d2423a2013-08-02 00:35:05 -07001762 array_sizing_visitor v;
1763 v.run(linked->ir);
Paul Berry15e05b92013-09-25 14:07:37 -07001764 v.fixup_unnamed_interface_types();
Ian Romanick6f539212010-12-07 18:30:33 -08001765
Ian Romanick3fb87872010-07-09 14:09:34 -07001766 return linked;
1767}
1768
Eric Anholta721abf2010-08-23 10:32:01 -07001769/**
1770 * Update the sizes of linked shader uniform arrays to the maximum
1771 * array index used.
1772 *
1773 * From page 81 (page 95 of the PDF) of the OpenGL 2.1 spec:
1774 *
1775 * If one or more elements of an array are active,
1776 * GetActiveUniform will return the name of the array in name,
1777 * subject to the restrictions listed above. The type of the array
1778 * is returned in type. The size parameter contains the highest
1779 * array element index used, plus one. The compiler or linker
1780 * determines the highest index used. There will be only one
1781 * active uniform reported by the GL per uniform array.
1782
1783 */
1784static void
Eric Anholt586b4b52010-09-28 14:32:16 -07001785update_array_sizes(struct gl_shader_program *prog)
Eric Anholta721abf2010-08-23 10:32:01 -07001786{
Paul Berry665b8d72014-01-07 10:11:39 -08001787 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Ian Romanick3322fba2010-10-14 13:28:42 -07001788 if (prog->_LinkedShaders[i] == NULL)
1789 continue;
1790
Matt Turner4d784462014-06-24 21:34:05 -07001791 foreach_in_list(ir_instruction, node, prog->_LinkedShaders[i]->ir) {
1792 ir_variable *const var = node->as_variable();
Eric Anholta721abf2010-08-23 10:32:01 -07001793
Tapani Pälli33ee2c62013-12-12 13:51:01 +02001794 if ((var == NULL) || (var->data.mode != ir_var_uniform) ||
Eric Anholta721abf2010-08-23 10:32:01 -07001795 !var->type->is_array())
1796 continue;
1797
Eric Anholt9feb4032012-05-01 14:43:31 -07001798 /* GL_ARB_uniform_buffer_object says that std140 uniforms
1799 * will not be eliminated. Since we always do std140, just
1800 * don't resize arrays in UBOs.
Francisco Jerez5c114932013-09-11 12:14:46 -07001801 *
1802 * Atomic counters are supposed to get deterministic
1803 * locations assigned based on the declaration ordering and
1804 * sizes, array compaction would mess that up.
Eric Anholt9feb4032012-05-01 14:43:31 -07001805 */
Francisco Jerez5c114932013-09-11 12:14:46 -07001806 if (var->is_in_uniform_block() || var->type->contains_atomic())
Eric Anholt9feb4032012-05-01 14:43:31 -07001807 continue;
1808
Tapani Pälli447bb902013-12-12 15:08:59 +02001809 unsigned int size = var->data.max_array_access;
Paul Berry665b8d72014-01-07 10:11:39 -08001810 for (unsigned j = 0; j < MESA_SHADER_STAGES; j++) {
Ian Romanick3322fba2010-10-14 13:28:42 -07001811 if (prog->_LinkedShaders[j] == NULL)
1812 continue;
1813
Matt Turner4d784462014-06-24 21:34:05 -07001814 foreach_in_list(ir_instruction, node2, prog->_LinkedShaders[j]->ir) {
1815 ir_variable *other_var = node2->as_variable();
Eric Anholta721abf2010-08-23 10:32:01 -07001816 if (!other_var)
1817 continue;
1818
1819 if (strcmp(var->name, other_var->name) == 0 &&
Tapani Pälli447bb902013-12-12 15:08:59 +02001820 other_var->data.max_array_access > size) {
1821 size = other_var->data.max_array_access;
Eric Anholta721abf2010-08-23 10:32:01 -07001822 }
1823 }
1824 }
Eric Anholt586b4b52010-09-28 14:32:16 -07001825
Fabian Bieler63684782013-06-14 13:37:07 +02001826 if (size + 1 != var->type->length) {
Ian Romanick89d81ab2011-01-25 10:41:20 -08001827 /* If this is a built-in uniform (i.e., it's backed by some
1828 * fixed-function state), adjust the number of state slots to
1829 * match the new array size. The number of slots per array entry
Bryan Cainf18a0862011-04-23 19:29:15 -05001830 * is not known. It seems safe to assume that the total number of
Ian Romanick89d81ab2011-01-25 10:41:20 -08001831 * slots is an integer multiple of the number of array elements.
1832 * Determine the number of slots per array element by dividing by
1833 * the old (total) size.
1834 */
Ian Romanick5aa8d812014-05-14 19:47:28 -07001835 const unsigned num_slots = var->get_num_state_slots();
1836 if (num_slots > 0) {
1837 var->set_num_state_slots((size + 1)
1838 * (num_slots / var->type->length));
Ian Romanick89d81ab2011-01-25 10:41:20 -08001839 }
1840
Eric Anholta721abf2010-08-23 10:32:01 -07001841 var->type = glsl_type::get_array_instance(var->type->fields.array,
1842 size + 1);
1843 /* FINISHME: We should update the types of array
1844 * dereferences of this variable now.
1845 */
1846 }
1847 }
1848 }
1849}
1850
Ian Romanick69846702010-06-22 17:29:19 -07001851/**
Bryan Cainf18a0862011-04-23 19:29:15 -05001852 * Find a contiguous set of available bits in a bitmask.
Ian Romanick69846702010-06-22 17:29:19 -07001853 *
1854 * \param used_mask Bits representing used (1) and unused (0) locations
1855 * \param needed_count Number of contiguous bits needed.
1856 *
1857 * \return
1858 * Base location of the available bits on success or -1 on failure.
1859 */
1860int
1861find_available_slots(unsigned used_mask, unsigned needed_count)
1862{
1863 unsigned needed_mask = (1 << needed_count) - 1;
1864 const int max_bit_to_test = (8 * sizeof(used_mask)) - needed_count;
1865
1866 /* The comparison to 32 is redundant, but without it GCC emits "warning:
1867 * cannot optimize possibly infinite loops" for the loop below.
1868 */
1869 if ((needed_count == 0) || (max_bit_to_test < 0) || (max_bit_to_test > 32))
1870 return -1;
1871
1872 for (int i = 0; i <= max_bit_to_test; i++) {
1873 if ((needed_mask & ~used_mask) == needed_mask)
1874 return i;
1875
1876 needed_mask <<= 1;
1877 }
1878
1879 return -1;
1880}
1881
1882
Ian Romanickd32d4f72011-06-27 17:59:58 -07001883/**
Andres Gomezb0e0c262014-10-24 16:51:09 +03001884 * Assign locations for either VS inputs or FS outputs
Ian Romanickd32d4f72011-06-27 17:59:58 -07001885 *
1886 * \param prog Shader program whose variables need locations assigned
1887 * \param target_index Selector for the program target to receive location
1888 * assignmnets. Must be either \c MESA_SHADER_VERTEX or
1889 * \c MESA_SHADER_FRAGMENT.
1890 * \param max_index Maximum number of generic locations. This corresponds
1891 * to either the maximum number of draw buffers or the
1892 * maximum number of generic attributes.
1893 *
1894 * \return
1895 * If locations are successfully assigned, true is returned. Otherwise an
1896 * error is emitted to the shader link log and false is returned.
Ian Romanickd32d4f72011-06-27 17:59:58 -07001897 */
Ian Romanick69846702010-06-22 17:29:19 -07001898bool
Ian Romanickd32d4f72011-06-27 17:59:58 -07001899assign_attribute_or_color_locations(gl_shader_program *prog,
1900 unsigned target_index,
1901 unsigned max_index)
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001902{
Ian Romanickd32d4f72011-06-27 17:59:58 -07001903 /* Mark invalid locations as being used.
Ian Romanick9342d262010-06-22 17:41:37 -07001904 */
Ian Romanickd32d4f72011-06-27 17:59:58 -07001905 unsigned used_locations = (max_index >= 32)
1906 ? ~0 : ~((1 << max_index) - 1);
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001907
Ian Romanickd32d4f72011-06-27 17:59:58 -07001908 assert((target_index == MESA_SHADER_VERTEX)
1909 || (target_index == MESA_SHADER_FRAGMENT));
1910
1911 gl_shader *const sh = prog->_LinkedShaders[target_index];
1912 if (sh == NULL)
1913 return true;
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001914
Ian Romanick69846702010-06-22 17:29:19 -07001915 /* Operate in a total of four passes.
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001916 *
1917 * 1. Invalidate the location assignments for all vertex shader inputs.
1918 *
1919 * 2. Assign locations for inputs that have user-defined (via
Ian Romanickb12b5d92011-11-04 16:08:52 -07001920 * glBindVertexAttribLocation) locations and outputs that have
1921 * user-defined locations (via glBindFragDataLocation).
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001922 *
Ian Romanick69846702010-06-22 17:29:19 -07001923 * 3. Sort the attributes without assigned locations by number of slots
1924 * required in decreasing order. Fragmentation caused by attribute
1925 * locations assigned by the application may prevent large attributes
1926 * from having enough contiguous space.
1927 *
1928 * 4. Assign locations to any inputs without assigned locations.
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001929 */
1930
Ian Romanickd32d4f72011-06-27 17:59:58 -07001931 const int generic_base = (target_index == MESA_SHADER_VERTEX)
Brian Paul7eb7d672011-07-07 16:47:59 -06001932 ? (int) VERT_ATTRIB_GENERIC0 : (int) FRAG_RESULT_DATA0;
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001933
Ian Romanickd32d4f72011-06-27 17:59:58 -07001934 const enum ir_variable_mode direction =
Paul Berry42a29d82013-01-11 14:39:32 -08001935 (target_index == MESA_SHADER_VERTEX)
1936 ? ir_var_shader_in : ir_var_shader_out;
Ian Romanickd32d4f72011-06-27 17:59:58 -07001937
1938
Ian Romanick69846702010-06-22 17:29:19 -07001939 /* Temporary storage for the set of attributes that need locations assigned.
1940 */
1941 struct temp_attr {
1942 unsigned slots;
1943 ir_variable *var;
1944
1945 /* Used below in the call to qsort. */
1946 static int compare(const void *a, const void *b)
1947 {
1948 const temp_attr *const l = (const temp_attr *) a;
1949 const temp_attr *const r = (const temp_attr *) b;
1950
1951 /* Reversed because we want a descending order sort below. */
1952 return r->slots - l->slots;
1953 }
1954 } to_assign[16];
1955
1956 unsigned num_attr = 0;
1957
Matt Turner4d784462014-06-24 21:34:05 -07001958 foreach_in_list(ir_instruction, node, sh->ir) {
1959 ir_variable *const var = node->as_variable();
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001960
Tapani Pälli33ee2c62013-12-12 13:51:01 +02001961 if ((var == NULL) || (var->data.mode != (unsigned) direction))
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001962 continue;
1963
Tapani Pälli447bb902013-12-12 15:08:59 +02001964 if (var->data.explicit_location) {
1965 if ((var->data.location >= (int)(max_index + generic_base))
1966 || (var->data.location < 0)) {
Ian Romanick586e7412011-07-28 14:04:09 -07001967 linker_error(prog,
1968 "invalid explicit location %d specified for `%s'\n",
Tapani Pälli447bb902013-12-12 15:08:59 +02001969 (var->data.location < 0)
1970 ? var->data.location
1971 : var->data.location - generic_base,
Ian Romanick586e7412011-07-28 14:04:09 -07001972 var->name);
Ian Romanick68a4fc92010-10-07 17:21:22 -07001973 return false;
Ian Romanick523b6112011-08-17 15:40:03 -07001974 }
1975 } else if (target_index == MESA_SHADER_VERTEX) {
1976 unsigned binding;
1977
1978 if (prog->AttributeBindings->get(binding, var->name)) {
1979 assert(binding >= VERT_ATTRIB_GENERIC0);
Tapani Pälli447bb902013-12-12 15:08:59 +02001980 var->data.location = binding;
1981 var->data.is_unmatched_generic_inout = 0;
Ian Romanick68a4fc92010-10-07 17:21:22 -07001982 }
Ian Romanickb12b5d92011-11-04 16:08:52 -07001983 } else if (target_index == MESA_SHADER_FRAGMENT) {
1984 unsigned binding;
Dave Airlie1256a5d2012-03-24 13:33:41 +00001985 unsigned index;
Ian Romanickb12b5d92011-11-04 16:08:52 -07001986
1987 if (prog->FragDataBindings->get(binding, var->name)) {
1988 assert(binding >= FRAG_RESULT_DATA0);
Tapani Pälli447bb902013-12-12 15:08:59 +02001989 var->data.location = binding;
1990 var->data.is_unmatched_generic_inout = 0;
Dave Airlie1256a5d2012-03-24 13:33:41 +00001991
1992 if (prog->FragDataIndexBindings->get(index, var->name)) {
Tapani Pälli447bb902013-12-12 15:08:59 +02001993 var->data.index = index;
Dave Airlie1256a5d2012-03-24 13:33:41 +00001994 }
Ian Romanickb12b5d92011-11-04 16:08:52 -07001995 }
Ian Romanick68a4fc92010-10-07 17:21:22 -07001996 }
1997
Ian Romanick9f0e98d2011-10-06 10:25:34 -07001998 /* If the variable is not a built-in and has a location statically
1999 * assigned in the shader (presumably via a layout qualifier), make sure
2000 * that it doesn't collide with other assigned locations. Otherwise,
2001 * add it to the list of variables that need linker-assigned locations.
Ian Romanick0ad22cd2010-06-21 17:18:31 -07002002 */
Paul Berry0026ad42013-07-31 08:15:08 -07002003 const unsigned slots = var->type->count_attribute_slots();
Tapani Pälli447bb902013-12-12 15:08:59 +02002004 if (var->data.location != -1) {
2005 if (var->data.location >= generic_base && var->data.index < 1) {
Ian Romanick523b6112011-08-17 15:40:03 -07002006 /* From page 61 of the OpenGL 4.0 spec:
2007 *
2008 * "LinkProgram will fail if the attribute bindings assigned
2009 * by BindAttribLocation do not leave not enough space to
2010 * assign a location for an active matrix attribute or an
2011 * active attribute array, both of which require multiple
2012 * contiguous generic attributes."
2013 *
Anuj Phogat8c61b6a2014-03-04 17:03:28 -08002014 * I think above text prohibits the aliasing of explicit and
2015 * automatic assignments. But, aliasing is allowed in manual
2016 * assignments of attribute locations. See below comments for
2017 * the details.
Ian Romanick523b6112011-08-17 15:40:03 -07002018 *
Anuj Phogat8c61b6a2014-03-04 17:03:28 -08002019 * From OpenGL 4.0 spec, page 61:
Ian Romanick523b6112011-08-17 15:40:03 -07002020 *
2021 * "It is possible for an application to bind more than one
2022 * attribute name to the same location. This is referred to as
2023 * aliasing. This will only work if only one of the aliased
2024 * attributes is active in the executable program, or if no
2025 * path through the shader consumes more than one attribute of
2026 * a set of attributes aliased to the same location. A link
2027 * error can occur if the linker determines that every path
2028 * through the shader consumes multiple aliased attributes,
2029 * but implementations are not required to generate an error
2030 * in this case."
2031 *
Anuj Phogat8c61b6a2014-03-04 17:03:28 -08002032 * From GLSL 4.30 spec, page 54:
2033 *
2034 * "A program will fail to link if any two non-vertex shader
2035 * input variables are assigned to the same location. For
2036 * vertex shaders, multiple input variables may be assigned
2037 * to the same location using either layout qualifiers or via
2038 * the OpenGL API. However, such aliasing is intended only to
2039 * support vertex shaders where each execution path accesses
2040 * at most one input per each location. Implementations are
2041 * permitted, but not required, to generate link-time errors
2042 * if they detect that every path through the vertex shader
2043 * executable accesses multiple inputs assigned to any single
2044 * location. For all shader types, a program will fail to link
2045 * if explicit location assignments leave the linker unable
2046 * to find space for other variables without explicit
2047 * assignments."
2048 *
2049 * From OpenGL ES 3.0 spec, page 56:
2050 *
2051 * "Binding more than one attribute name to the same location
2052 * is referred to as aliasing, and is not permitted in OpenGL
2053 * ES Shading Language 3.00 vertex shaders. LinkProgram will
2054 * fail when this condition exists. However, aliasing is
2055 * possible in OpenGL ES Shading Language 1.00 vertex shaders.
2056 * This will only work if only one of the aliased attributes
2057 * is active in the executable program, or if no path through
2058 * the shader consumes more than one attribute of a set of
2059 * attributes aliased to the same location. A link error can
2060 * occur if the linker determines that every path through the
2061 * shader consumes multiple aliased attributes, but implemen-
2062 * tations are not required to generate an error in this case."
2063 *
2064 * After looking at above references from OpenGL, OpenGL ES and
2065 * GLSL specifications, we allow aliasing of vertex input variables
2066 * in: OpenGL 2.0 (and above) and OpenGL ES 2.0.
2067 *
2068 * NOTE: This is not required by the spec but its worth mentioning
2069 * here that we're not doing anything to make sure that no path
2070 * through the vertex shader executable accesses multiple inputs
2071 * assigned to any single location.
Ian Romanick523b6112011-08-17 15:40:03 -07002072 */
Anuj Phogat8c61b6a2014-03-04 17:03:28 -08002073
Ian Romanick523b6112011-08-17 15:40:03 -07002074 /* Mask representing the contiguous slots that will be used by
2075 * this attribute.
2076 */
Tapani Pälli447bb902013-12-12 15:08:59 +02002077 const unsigned attr = var->data.location - generic_base;
Ian Romanick523b6112011-08-17 15:40:03 -07002078 const unsigned use_mask = (1 << slots) - 1;
Anuj Phogat8c61b6a2014-03-04 17:03:28 -08002079 const char *const string = (target_index == MESA_SHADER_VERTEX)
2080 ? "vertex shader input" : "fragment shader output";
2081
2082 /* Generate a link error if the requested locations for this
2083 * attribute exceed the maximum allowed attribute location.
2084 */
2085 if (attr + slots > max_index) {
2086 linker_error(prog,
2087 "insufficient contiguous locations "
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002088 "available for %s `%s' %d %d %d\n", string,
Anuj Phogat8c61b6a2014-03-04 17:03:28 -08002089 var->name, used_locations, use_mask, attr);
2090 return false;
2091 }
Ian Romanick0ad22cd2010-06-21 17:18:31 -07002092
Ian Romanick523b6112011-08-17 15:40:03 -07002093 /* Generate a link error if the set of bits requested for this
2094 * attribute overlaps any previously allocated bits.
2095 */
2096 if ((~(use_mask << attr) & used_locations) != used_locations) {
Anuj Phogat8c61b6a2014-03-04 17:03:28 -08002097 if (target_index == MESA_SHADER_FRAGMENT ||
2098 (prog->IsES && prog->Version >= 300)) {
2099 linker_error(prog,
2100 "overlapping location is assigned "
2101 "to %s `%s' %d %d %d\n", string,
2102 var->name, used_locations, use_mask, attr);
2103 return false;
2104 } else {
2105 linker_warning(prog,
2106 "overlapping location is assigned "
2107 "to %s `%s' %d %d %d\n", string,
2108 var->name, used_locations, use_mask, attr);
2109 }
Ian Romanick523b6112011-08-17 15:40:03 -07002110 }
2111
2112 used_locations |= (use_mask << attr);
2113 }
2114
2115 continue;
2116 }
2117
2118 to_assign[num_attr].slots = slots;
Ian Romanick69846702010-06-22 17:29:19 -07002119 to_assign[num_attr].var = var;
2120 num_attr++;
Ian Romanick0ad22cd2010-06-21 17:18:31 -07002121 }
Ian Romanick69846702010-06-22 17:29:19 -07002122
2123 /* If all of the attributes were assigned locations by the application (or
2124 * are built-in attributes with fixed locations), return early. This should
2125 * be the common case.
2126 */
2127 if (num_attr == 0)
2128 return true;
2129
2130 qsort(to_assign, num_attr, sizeof(to_assign[0]), temp_attr::compare);
2131
Ian Romanickd32d4f72011-06-27 17:59:58 -07002132 if (target_index == MESA_SHADER_VERTEX) {
2133 /* VERT_ATTRIB_GENERIC0 is a pseudo-alias for VERT_ATTRIB_POS. It can
2134 * only be explicitly assigned by via glBindAttribLocation. Mark it as
2135 * reserved to prevent it from being automatically allocated below.
2136 */
2137 find_deref_visitor find("gl_Vertex");
2138 find.run(sh->ir);
2139 if (find.variable_found())
2140 used_locations |= (1 << 0);
2141 }
Ian Romanick982e3792010-06-29 18:58:20 -07002142
Ian Romanick69846702010-06-22 17:29:19 -07002143 for (unsigned i = 0; i < num_attr; i++) {
2144 /* Mask representing the contiguous slots that will be used by this
2145 * attribute.
2146 */
2147 const unsigned use_mask = (1 << to_assign[i].slots) - 1;
2148
2149 int location = find_available_slots(used_locations, to_assign[i].slots);
2150
2151 if (location < 0) {
Ian Romanickd32d4f72011-06-27 17:59:58 -07002152 const char *const string = (target_index == MESA_SHADER_VERTEX)
2153 ? "vertex shader input" : "fragment shader output";
2154
Ian Romanick586e7412011-07-28 14:04:09 -07002155 linker_error(prog,
Dave Airlie7449ae42011-11-20 19:56:35 +00002156 "insufficient contiguous locations "
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002157 "available for %s `%s'\n",
Ian Romanick586e7412011-07-28 14:04:09 -07002158 string, to_assign[i].var->name);
Ian Romanick69846702010-06-22 17:29:19 -07002159 return false;
2160 }
2161
Tapani Pälli447bb902013-12-12 15:08:59 +02002162 to_assign[i].var->data.location = generic_base + location;
2163 to_assign[i].var->data.is_unmatched_generic_inout = 0;
Ian Romanick69846702010-06-22 17:29:19 -07002164 used_locations |= (use_mask << location);
2165 }
2166
2167 return true;
Ian Romanick0ad22cd2010-06-21 17:18:31 -07002168}
2169
2170
Ian Romanick40e114b2010-08-17 14:55:50 -07002171/**
Ian Romanickcc90e622010-10-19 17:59:10 -07002172 * Demote shader inputs and outputs that are not used in other stages
Ian Romanick40e114b2010-08-17 14:55:50 -07002173 */
2174void
Ian Romanickcc90e622010-10-19 17:59:10 -07002175demote_shader_inputs_and_outputs(gl_shader *sh, enum ir_variable_mode mode)
Ian Romanick40e114b2010-08-17 14:55:50 -07002176{
Matt Turner4d784462014-06-24 21:34:05 -07002177 foreach_in_list(ir_instruction, node, sh->ir) {
2178 ir_variable *const var = node->as_variable();
Ian Romanick40e114b2010-08-17 14:55:50 -07002179
Tapani Pälli33ee2c62013-12-12 13:51:01 +02002180 if ((var == NULL) || (var->data.mode != int(mode)))
Ian Romanick40e114b2010-08-17 14:55:50 -07002181 continue;
2182
Ian Romanickcc90e622010-10-19 17:59:10 -07002183 /* A shader 'in' or 'out' variable is only really an input or output if
2184 * its value is used by other shader stages. This will cause the variable
2185 * to have a location assigned.
Ian Romanick40e114b2010-08-17 14:55:50 -07002186 */
Tapani Pälli447bb902013-12-12 15:08:59 +02002187 if (var->data.is_unmatched_generic_inout) {
Ian Romanicka9948242014-07-08 18:53:09 -07002188 assert(var->data.mode != ir_var_temporary);
Tapani Pälli33ee2c62013-12-12 13:51:01 +02002189 var->data.mode = ir_var_auto;
Ian Romanick40e114b2010-08-17 14:55:50 -07002190 }
2191 }
2192}
2193
2194
Paul Berry871ddb92011-11-05 11:17:32 -07002195/**
Marek Olšákec174a42011-11-18 15:00:10 +01002196 * Store the gl_FragDepth layout in the gl_shader_program struct.
2197 */
2198static void
2199store_fragdepth_layout(struct gl_shader_program *prog)
2200{
2201 if (prog->_LinkedShaders[MESA_SHADER_FRAGMENT] == NULL) {
2202 return;
2203 }
2204
2205 struct exec_list *ir = prog->_LinkedShaders[MESA_SHADER_FRAGMENT]->ir;
2206
2207 /* We don't look up the gl_FragDepth symbol directly because if
2208 * gl_FragDepth is not used in the shader, it's removed from the IR.
2209 * However, the symbol won't be removed from the symbol table.
2210 *
2211 * We're only interested in the cases where the variable is NOT removed
2212 * from the IR.
2213 */
Matt Turner4d784462014-06-24 21:34:05 -07002214 foreach_in_list(ir_instruction, node, ir) {
2215 ir_variable *const var = node->as_variable();
Marek Olšákec174a42011-11-18 15:00:10 +01002216
Tapani Pälli33ee2c62013-12-12 13:51:01 +02002217 if (var == NULL || var->data.mode != ir_var_shader_out) {
Marek Olšákec174a42011-11-18 15:00:10 +01002218 continue;
2219 }
2220
2221 if (strcmp(var->name, "gl_FragDepth") == 0) {
Tapani Pälli447bb902013-12-12 15:08:59 +02002222 switch (var->data.depth_layout) {
Marek Olšákec174a42011-11-18 15:00:10 +01002223 case ir_depth_layout_none:
2224 prog->FragDepthLayout = FRAG_DEPTH_LAYOUT_NONE;
2225 return;
2226 case ir_depth_layout_any:
2227 prog->FragDepthLayout = FRAG_DEPTH_LAYOUT_ANY;
2228 return;
2229 case ir_depth_layout_greater:
2230 prog->FragDepthLayout = FRAG_DEPTH_LAYOUT_GREATER;
2231 return;
2232 case ir_depth_layout_less:
2233 prog->FragDepthLayout = FRAG_DEPTH_LAYOUT_LESS;
2234 return;
2235 case ir_depth_layout_unchanged:
2236 prog->FragDepthLayout = FRAG_DEPTH_LAYOUT_UNCHANGED;
2237 return;
2238 default:
2239 assert(0);
2240 return;
2241 }
2242 }
2243 }
2244}
2245
2246/**
Ian Romanick92f81592011-11-08 12:37:19 -08002247 * Validate the resources used by a program versus the implementation limits
2248 */
Paul Berryb95d2372013-07-27 11:08:31 -07002249static void
Ian Romanick92f81592011-11-08 12:37:19 -08002250check_resources(struct gl_context *ctx, struct gl_shader_program *prog)
2251{
Paul Berry665b8d72014-01-07 10:11:39 -08002252 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Ian Romanick92f81592011-11-08 12:37:19 -08002253 struct gl_shader *sh = prog->_LinkedShaders[i];
2254
2255 if (sh == NULL)
2256 continue;
2257
Paul Berrybce8bc02014-01-08 10:17:01 -08002258 if (sh->num_samplers > ctx->Const.Program[i].MaxTextureImageUnits) {
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002259 linker_error(prog, "Too many %s shader texture samplers\n",
Paul Berry665b8d72014-01-07 10:11:39 -08002260 _mesa_shader_stage_to_string(i));
Ian Romanick92f81592011-11-08 12:37:19 -08002261 }
2262
Paul Berrybce8bc02014-01-08 10:17:01 -08002263 if (sh->num_uniform_components >
2264 ctx->Const.Program[i].MaxUniformComponents) {
Eric Anholt38e77e52013-05-23 11:10:15 -07002265 if (ctx->Const.GLSLSkipStrictMaxUniformLimitCheck) {
2266 linker_warning(prog, "Too many %s shader default uniform block "
2267 "components, but the driver will try to optimize "
2268 "them out; this is non-portable out-of-spec "
2269 "behavior\n",
Paul Berry665b8d72014-01-07 10:11:39 -08002270 _mesa_shader_stage_to_string(i));
Eric Anholt38e77e52013-05-23 11:10:15 -07002271 } else {
2272 linker_error(prog, "Too many %s shader default uniform block "
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002273 "components\n",
Paul Berry665b8d72014-01-07 10:11:39 -08002274 _mesa_shader_stage_to_string(i));
Eric Anholt38e77e52013-05-23 11:10:15 -07002275 }
2276 }
2277
2278 if (sh->num_combined_uniform_components >
Paul Berrybce8bc02014-01-08 10:17:01 -08002279 ctx->Const.Program[i].MaxCombinedUniformComponents) {
Marek Olšákdf809ae2011-12-10 04:14:46 +01002280 if (ctx->Const.GLSLSkipStrictMaxUniformLimitCheck) {
2281 linker_warning(prog, "Too many %s shader uniform components, "
2282 "but the driver will try to optimize them out; "
2283 "this is non-portable out-of-spec behavior\n",
Paul Berry665b8d72014-01-07 10:11:39 -08002284 _mesa_shader_stage_to_string(i));
Marek Olšákdf809ae2011-12-10 04:14:46 +01002285 } else {
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002286 linker_error(prog, "Too many %s shader uniform components\n",
Paul Berry665b8d72014-01-07 10:11:39 -08002287 _mesa_shader_stage_to_string(i));
Marek Olšákdf809ae2011-12-10 04:14:46 +01002288 }
Ian Romanick92f81592011-11-08 12:37:19 -08002289 }
2290 }
2291
Paul Berry665b8d72014-01-07 10:11:39 -08002292 unsigned blocks[MESA_SHADER_STAGES] = {0};
Eric Anholt877a8972012-06-25 12:47:01 -07002293 unsigned total_uniform_blocks = 0;
2294
2295 for (unsigned i = 0; i < prog->NumUniformBlocks; i++) {
Paul Berry665b8d72014-01-07 10:11:39 -08002296 for (unsigned j = 0; j < MESA_SHADER_STAGES; j++) {
Eric Anholt877a8972012-06-25 12:47:01 -07002297 if (prog->UniformBlockStageIndex[j][i] != -1) {
2298 blocks[j]++;
2299 total_uniform_blocks++;
2300 }
2301 }
2302
2303 if (total_uniform_blocks > ctx->Const.MaxCombinedUniformBlocks) {
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002304 linker_error(prog, "Too many combined uniform blocks (%d/%d)\n",
Eric Anholt877a8972012-06-25 12:47:01 -07002305 prog->NumUniformBlocks,
2306 ctx->Const.MaxCombinedUniformBlocks);
2307 } else {
Paul Berry665b8d72014-01-07 10:11:39 -08002308 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Paul Berrybce8bc02014-01-08 10:17:01 -08002309 const unsigned max_uniform_blocks =
2310 ctx->Const.Program[i].MaxUniformBlocks;
2311 if (blocks[i] > max_uniform_blocks) {
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002312 linker_error(prog, "Too many %s uniform blocks (%d/%d)\n",
Paul Berry665b8d72014-01-07 10:11:39 -08002313 _mesa_shader_stage_to_string(i),
Eric Anholt877a8972012-06-25 12:47:01 -07002314 blocks[i],
Paul Berrybce8bc02014-01-08 10:17:01 -08002315 max_uniform_blocks);
Eric Anholt877a8972012-06-25 12:47:01 -07002316 break;
2317 }
2318 }
2319 }
2320 }
Ian Romanick92f81592011-11-08 12:37:19 -08002321}
Paul Berry871ddb92011-11-05 11:17:32 -07002322
Francisco Jereze51158f2013-11-22 15:53:26 -08002323/**
2324 * Validate shader image resources.
2325 */
2326static void
2327check_image_resources(struct gl_context *ctx, struct gl_shader_program *prog)
2328{
2329 unsigned total_image_units = 0;
2330 unsigned fragment_outputs = 0;
2331
2332 if (!ctx->Extensions.ARB_shader_image_load_store)
2333 return;
2334
2335 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
2336 struct gl_shader *sh = prog->_LinkedShaders[i];
2337
2338 if (sh) {
2339 if (sh->NumImages > ctx->Const.Program[i].MaxImageUniforms)
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002340 linker_error(prog, "Too many %s shader image uniforms\n",
Francisco Jereze51158f2013-11-22 15:53:26 -08002341 _mesa_shader_stage_to_string(i));
2342
2343 total_image_units += sh->NumImages;
2344
2345 if (i == MESA_SHADER_FRAGMENT) {
Matt Turner4d784462014-06-24 21:34:05 -07002346 foreach_in_list(ir_instruction, node, sh->ir) {
2347 ir_variable *var = node->as_variable();
Francisco Jereze51158f2013-11-22 15:53:26 -08002348 if (var && var->data.mode == ir_var_shader_out)
2349 fragment_outputs += var->type->count_attribute_slots();
2350 }
2351 }
2352 }
2353 }
2354
2355 if (total_image_units > ctx->Const.MaxCombinedImageUniforms)
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002356 linker_error(prog, "Too many combined image uniforms\n");
Francisco Jereze51158f2013-11-22 15:53:26 -08002357
2358 if (total_image_units + fragment_outputs >
2359 ctx->Const.MaxCombinedImageUnitsAndFragmentOutputs)
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002360 linker_error(prog, "Too many combined image uniforms and fragment outputs\n");
Francisco Jereze51158f2013-11-22 15:53:26 -08002361}
2362
Tapani Pällieca9d162014-04-08 08:45:36 +03002363
2364/**
2365 * Initializes explicit location slots to INACTIVE_UNIFORM_EXPLICIT_LOCATION
2366 * for a variable, checks for overlaps between other uniforms using explicit
2367 * locations.
2368 */
2369static bool
2370reserve_explicit_locations(struct gl_shader_program *prog,
2371 string_to_uint_map *map, ir_variable *var)
2372{
2373 unsigned slots = var->type->uniform_locations();
2374 unsigned max_loc = var->data.location + slots - 1;
2375
2376 /* Resize remap table if locations do not fit in the current one. */
2377 if (max_loc + 1 > prog->NumUniformRemapTable) {
2378 prog->UniformRemapTable =
2379 reralloc(prog, prog->UniformRemapTable,
2380 gl_uniform_storage *,
2381 max_loc + 1);
2382
2383 if (!prog->UniformRemapTable) {
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002384 linker_error(prog, "Out of memory during linking.\n");
Tapani Pällieca9d162014-04-08 08:45:36 +03002385 return false;
2386 }
2387
2388 /* Initialize allocated space. */
2389 for (unsigned i = prog->NumUniformRemapTable; i < max_loc + 1; i++)
2390 prog->UniformRemapTable[i] = NULL;
2391
2392 prog->NumUniformRemapTable = max_loc + 1;
2393 }
2394
2395 for (unsigned i = 0; i < slots; i++) {
2396 unsigned loc = var->data.location + i;
2397
2398 /* Check if location is already used. */
2399 if (prog->UniformRemapTable[loc] == INACTIVE_UNIFORM_EXPLICIT_LOCATION) {
2400
2401 /* Possibly same uniform from a different stage, this is ok. */
2402 unsigned hash_loc;
2403 if (map->get(hash_loc, var->name) && hash_loc == loc - i)
2404 continue;
2405
2406 /* ARB_explicit_uniform_location specification states:
2407 *
2408 * "No two default-block uniform variables in the program can have
2409 * the same location, even if they are unused, otherwise a compiler
2410 * or linker error will be generated."
2411 */
2412 linker_error(prog,
Neil Roberts352f8f22014-11-13 15:31:44 +00002413 "location qualifier for uniform %s overlaps "
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002414 "previously used location\n",
Tapani Pällieca9d162014-04-08 08:45:36 +03002415 var->name);
2416 return false;
2417 }
2418
2419 /* Initialize location as inactive before optimization
2420 * rounds and location assignment.
2421 */
2422 prog->UniformRemapTable[loc] = INACTIVE_UNIFORM_EXPLICIT_LOCATION;
2423 }
2424
2425 /* Note, base location used for arrays. */
2426 map->put(var->data.location, var->name);
2427
2428 return true;
2429}
2430
2431/**
2432 * Check and reserve all explicit uniform locations, called before
2433 * any optimizations happen to handle also inactive uniforms and
2434 * inactive array elements that may get trimmed away.
2435 */
2436static void
2437check_explicit_uniform_locations(struct gl_context *ctx,
2438 struct gl_shader_program *prog)
2439{
2440 if (!ctx->Extensions.ARB_explicit_uniform_location)
2441 return;
2442
2443 /* This map is used to detect if overlapping explicit locations
2444 * occur with the same uniform (from different stage) or a different one.
2445 */
2446 string_to_uint_map *uniform_map = new string_to_uint_map;
2447
2448 if (!uniform_map) {
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002449 linker_error(prog, "Out of memory during linking.\n");
Tapani Pällieca9d162014-04-08 08:45:36 +03002450 return;
2451 }
2452
2453 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
2454 struct gl_shader *sh = prog->_LinkedShaders[i];
2455
2456 if (!sh)
2457 continue;
2458
Matt Turner4d784462014-06-24 21:34:05 -07002459 foreach_in_list(ir_instruction, node, sh->ir) {
2460 ir_variable *var = node->as_variable();
Tapani Pällieca9d162014-04-08 08:45:36 +03002461 if ((var && var->data.mode == ir_var_uniform) &&
2462 var->data.explicit_location) {
Dave Airlie2d5d1f52014-09-02 09:54:36 +10002463 if (!reserve_explicit_locations(prog, uniform_map, var)) {
2464 delete uniform_map;
Tapani Pällieca9d162014-04-08 08:45:36 +03002465 return;
Dave Airlie2d5d1f52014-09-02 09:54:36 +10002466 }
Tapani Pällieca9d162014-04-08 08:45:36 +03002467 }
2468 }
2469 }
2470
2471 delete uniform_map;
2472}
2473
Ian Romanick0e59b262010-06-23 11:23:01 -07002474void
Kristian Høgsbergf9995b32010-10-12 12:26:10 -04002475link_shaders(struct gl_context *ctx, struct gl_shader_program *prog)
Ian Romanick832dfa52010-06-17 15:04:20 -07002476{
Paul Berry871ddb92011-11-05 11:17:32 -07002477 tfeedback_decl *tfeedback_decls = NULL;
2478 unsigned num_tfeedback_decls = prog->TransformFeedback.NumVarying;
2479
Kenneth Graunked3073f52011-01-21 14:32:31 -08002480 void *mem_ctx = ralloc_context(NULL); // temporary linker context
Kenneth Graunke2da02e72010-11-17 11:03:57 -08002481
Paul Berryb95d2372013-07-27 11:08:31 -07002482 prog->LinkStatus = true; /* All error paths will set this to false */
Ian Romanick832dfa52010-06-17 15:04:20 -07002483 prog->Validated = false;
2484 prog->_Used = false;
2485
Anuj Phogat9bcb0a82014-02-10 14:12:40 -08002486 prog->ARB_fragment_coord_conventions_enable = false;
Francisco Jerez5c114932013-09-11 12:14:46 -07002487
Ian Romanick832dfa52010-06-17 15:04:20 -07002488 /* Separate the shaders into groups based on their type.
2489 */
Paul Berrycd18ba12014-01-07 08:56:57 -08002490 struct gl_shader **shader_list[MESA_SHADER_STAGES];
2491 unsigned num_shaders[MESA_SHADER_STAGES];
Ian Romanick832dfa52010-06-17 15:04:20 -07002492
Paul Berrycd18ba12014-01-07 08:56:57 -08002493 for (int i = 0; i < MESA_SHADER_STAGES; i++) {
2494 shader_list[i] = (struct gl_shader **)
2495 calloc(prog->NumShaders, sizeof(struct gl_shader *));
2496 num_shaders[i] = 0;
2497 }
Ian Romanick832dfa52010-06-17 15:04:20 -07002498
Ian Romanick25f51d32010-07-16 15:51:50 -07002499 unsigned min_version = UINT_MAX;
2500 unsigned max_version = 0;
Paul Berrya9f34dc2012-08-02 17:49:44 -07002501 const bool is_es_prog =
2502 (prog->NumShaders > 0 && prog->Shaders[0]->IsES) ? true : false;
Ian Romanick832dfa52010-06-17 15:04:20 -07002503 for (unsigned i = 0; i < prog->NumShaders; i++) {
Ian Romanick25f51d32010-07-16 15:51:50 -07002504 min_version = MIN2(min_version, prog->Shaders[i]->Version);
2505 max_version = MAX2(max_version, prog->Shaders[i]->Version);
2506
Paul Berrya9f34dc2012-08-02 17:49:44 -07002507 if (prog->Shaders[i]->IsES != is_es_prog) {
2508 linker_error(prog, "all shaders must use same shading "
2509 "language version\n");
2510 goto done;
2511 }
2512
Anuj Phogat9bcb0a82014-02-10 14:12:40 -08002513 prog->ARB_fragment_coord_conventions_enable |=
2514 prog->Shaders[i]->ARB_fragment_coord_conventions_enable;
2515
Paul Berrycd18ba12014-01-07 08:56:57 -08002516 gl_shader_stage shader_type = prog->Shaders[i]->Stage;
2517 shader_list[shader_type][num_shaders[shader_type]] = prog->Shaders[i];
2518 num_shaders[shader_type]++;
Ian Romanick832dfa52010-06-17 15:04:20 -07002519 }
2520
Paul Berry672fab02013-10-13 18:01:11 -07002521 /* In desktop GLSL, different shader versions may be linked together. In
2522 * GLSL ES, all shader versions must be the same.
Ian Romanick25f51d32010-07-16 15:51:50 -07002523 */
Paul Berry672fab02013-10-13 18:01:11 -07002524 if (is_es_prog && min_version != max_version) {
Ian Romanick586e7412011-07-28 14:04:09 -07002525 linker_error(prog, "all shaders must use same shading "
2526 "language version\n");
Ian Romanick25f51d32010-07-16 15:51:50 -07002527 goto done;
2528 }
2529
2530 prog->Version = max_version;
Paul Berry91c92bb2012-08-02 17:50:43 -07002531 prog->IsES = is_es_prog;
Ian Romanick25f51d32010-07-16 15:51:50 -07002532
Fabian Bielerbd85ba02013-05-24 23:26:54 +02002533 /* Geometry shaders have to be linked with vertex shaders.
2534 */
Paul Berrycd18ba12014-01-07 08:56:57 -08002535 if (num_shaders[MESA_SHADER_GEOMETRY] > 0 &&
Ian Romanickc557eb72014-01-23 18:26:29 -08002536 num_shaders[MESA_SHADER_VERTEX] == 0 &&
2537 !prog->SeparateShader) {
Fabian Bielerbd85ba02013-05-24 23:26:54 +02002538 linker_error(prog, "Geometry shader must be linked with "
2539 "vertex shader\n");
2540 goto done;
2541 }
2542
Paul Berry1fe274b2014-01-08 11:40:23 -08002543 /* Compute shaders have additional restrictions. */
2544 if (num_shaders[MESA_SHADER_COMPUTE] > 0 &&
2545 num_shaders[MESA_SHADER_COMPUTE] != prog->NumShaders) {
2546 linker_error(prog, "Compute shaders may not be linked with any other "
2547 "type of shader\n");
2548 }
2549
Paul Berry665b8d72014-01-07 10:11:39 -08002550 for (unsigned int i = 0; i < MESA_SHADER_STAGES; i++) {
Ian Romanick3322fba2010-10-14 13:28:42 -07002551 if (prog->_LinkedShaders[i] != NULL)
2552 ctx->Driver.DeleteShader(ctx, prog->_LinkedShaders[i]);
2553
2554 prog->_LinkedShaders[i] = NULL;
Eric Anholt5d0f4302010-08-18 12:02:35 -07002555 }
2556
Ian Romanickcd6764e2010-07-16 16:00:07 -07002557 /* Link all shaders for a particular stage and validate the result.
2558 */
Paul Berrycd18ba12014-01-07 08:56:57 -08002559 for (int stage = 0; stage < MESA_SHADER_STAGES; stage++) {
2560 if (num_shaders[stage] > 0) {
2561 gl_shader *const sh =
2562 link_intrastage_shaders(mem_ctx, ctx, prog, shader_list[stage],
2563 num_shaders[stage]);
Ian Romanick3fb87872010-07-09 14:09:34 -07002564
Paul Berrycd18ba12014-01-07 08:56:57 -08002565 if (!prog->LinkStatus)
2566 goto done;
Ian Romanick3fb87872010-07-09 14:09:34 -07002567
Paul Berrycd18ba12014-01-07 08:56:57 -08002568 switch (stage) {
2569 case MESA_SHADER_VERTEX:
2570 validate_vertex_shader_executable(prog, sh);
2571 break;
2572 case MESA_SHADER_GEOMETRY:
2573 validate_geometry_shader_executable(prog, sh);
2574 break;
2575 case MESA_SHADER_FRAGMENT:
2576 validate_fragment_shader_executable(prog, sh);
2577 break;
2578 }
2579 if (!prog->LinkStatus)
2580 goto done;
Ian Romanick3fb87872010-07-09 14:09:34 -07002581
Paul Berrycd18ba12014-01-07 08:56:57 -08002582 _mesa_reference_shader(ctx, &prog->_LinkedShaders[stage], sh);
2583 }
Ian Romanickcc22c5a2010-06-18 17:13:42 -07002584 }
2585
Paul Berrycd18ba12014-01-07 08:56:57 -08002586 if (num_shaders[MESA_SHADER_GEOMETRY] > 0)
Paul Berry44b7ebe2013-10-23 12:55:24 -07002587 prog->LastClipDistanceArraySize = prog->Geom.ClipDistanceArraySize;
Paul Berrycd18ba12014-01-07 08:56:57 -08002588 else if (num_shaders[MESA_SHADER_VERTEX] > 0)
2589 prog->LastClipDistanceArraySize = prog->Vert.ClipDistanceArraySize;
2590 else
2591 prog->LastClipDistanceArraySize = 0; /* Not used */
Bryan Cain25480922013-02-15 09:46:50 -06002592
Ian Romanick3ed850e2010-06-23 12:18:21 -07002593 /* Here begins the inter-stage linking phase. Some initial validation is
2594 * performed, then locations are assigned for uniforms, attributes, and
2595 * varyings.
2596 */
Paul Berryb95d2372013-07-27 11:08:31 -07002597 cross_validate_uniforms(prog);
2598 if (!prog->LinkStatus)
2599 goto done;
Ian Romanick3322fba2010-10-14 13:28:42 -07002600
Paul Berryb95d2372013-07-27 11:08:31 -07002601 unsigned prev;
Ian Romanick3322fba2010-10-14 13:28:42 -07002602
Paul Berry28e526d2014-01-06 19:47:25 -08002603 for (prev = 0; prev <= MESA_SHADER_FRAGMENT; prev++) {
Paul Berryb95d2372013-07-27 11:08:31 -07002604 if (prog->_LinkedShaders[prev] != NULL)
2605 break;
2606 }
Ian Romanick3322fba2010-10-14 13:28:42 -07002607
Tapani Pällieca9d162014-04-08 08:45:36 +03002608 check_explicit_uniform_locations(ctx, prog);
2609 if (!prog->LinkStatus)
2610 goto done;
2611
Paul Berryb95d2372013-07-27 11:08:31 -07002612 /* Validate the inputs of each stage with the output of the preceding
2613 * stage.
2614 */
Paul Berry28e526d2014-01-06 19:47:25 -08002615 for (unsigned i = prev + 1; i <= MESA_SHADER_FRAGMENT; i++) {
Paul Berryb95d2372013-07-27 11:08:31 -07002616 if (prog->_LinkedShaders[i] == NULL)
2617 continue;
Kenneth Graunke3ddfccb2013-05-20 23:46:16 -07002618
Paul Berry544e3122013-11-15 14:23:45 -08002619 validate_interstage_inout_blocks(prog, prog->_LinkedShaders[prev],
2620 prog->_LinkedShaders[i]);
Paul Berryb95d2372013-07-27 11:08:31 -07002621 if (!prog->LinkStatus)
2622 goto done;
Ian Romanick3322fba2010-10-14 13:28:42 -07002623
Paul Berryb95d2372013-07-27 11:08:31 -07002624 cross_validate_outputs_to_inputs(prog,
2625 prog->_LinkedShaders[prev],
2626 prog->_LinkedShaders[i]);
2627 if (!prog->LinkStatus)
2628 goto done;
Ian Romanick37101922010-06-18 19:02:10 -07002629
Paul Berryb95d2372013-07-27 11:08:31 -07002630 prev = i;
Ian Romanick37101922010-06-18 19:02:10 -07002631 }
Ian Romanick832dfa52010-06-17 15:04:20 -07002632
Paul Berry544e3122013-11-15 14:23:45 -08002633 /* Cross-validate uniform blocks between shader stages */
2634 validate_interstage_uniform_blocks(prog, prog->_LinkedShaders,
Paul Berry665b8d72014-01-07 10:11:39 -08002635 MESA_SHADER_STAGES);
Paul Berry544e3122013-11-15 14:23:45 -08002636 if (!prog->LinkStatus)
2637 goto done;
Jordan Justen5ebf5472013-03-10 03:20:03 -07002638
Paul Berry665b8d72014-01-07 10:11:39 -08002639 for (unsigned int i = 0; i < MESA_SHADER_STAGES; i++) {
Jordan Justen5ebf5472013-03-10 03:20:03 -07002640 if (prog->_LinkedShaders[i] != NULL)
2641 lower_named_interface_blocks(mem_ctx, prog->_LinkedShaders[i]);
2642 }
2643
Eric Anholt3de13952012-05-04 13:08:46 -07002644 /* Implement the GLSL 1.30+ rule for discard vs infinite loops Do
2645 * it before optimization because we want most of the checks to get
2646 * dropped thanks to constant propagation.
Paul Berry15ba2a52012-08-02 17:51:02 -07002647 *
2648 * This rule also applies to GLSL ES 3.00.
Eric Anholt3de13952012-05-04 13:08:46 -07002649 */
Paul Berry15ba2a52012-08-02 17:51:02 -07002650 if (max_version >= (is_es_prog ? 300 : 130)) {
Eric Anholt3de13952012-05-04 13:08:46 -07002651 struct gl_shader *sh = prog->_LinkedShaders[MESA_SHADER_FRAGMENT];
2652 if (sh) {
2653 lower_discard_flow(sh->ir);
2654 }
2655 }
2656
Eric Anholtf609cf72012-04-27 13:52:56 -07002657 if (!interstage_cross_validate_uniform_blocks(prog))
2658 goto done;
2659
Eric Anholt2f4fe152010-08-10 13:06:49 -07002660 /* Do common optimization before assigning storage for attributes,
2661 * uniforms, and varyings. Later optimization could possibly make
2662 * some of that unused.
2663 */
Paul Berry665b8d72014-01-07 10:11:39 -08002664 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Ian Romanick3322fba2010-10-14 13:28:42 -07002665 if (prog->_LinkedShaders[i] == NULL)
2666 continue;
2667
Ian Romanick02c5ae12011-07-11 10:46:01 -07002668 detect_recursion_linked(prog, prog->_LinkedShaders[i]->ir);
2669 if (!prog->LinkStatus)
2670 goto done;
2671
Marek Olšák002211f2014-08-03 04:31:56 +02002672 if (ctx->Const.ShaderCompilerOptions[i].LowerClipDistance) {
Paul Berry18392442012-12-04 11:11:02 -08002673 lower_clip_distance(prog->_LinkedShaders[i]);
2674 }
Paul Berryc06e3252011-08-11 20:58:21 -07002675
Kenneth Graunke169c6452014-04-06 23:25:00 -07002676 while (do_common_optimization(prog->_LinkedShaders[i]->ir, true, false,
Marek Olšák002211f2014-08-03 04:31:56 +02002677 &ctx->Const.ShaderCompilerOptions[i],
Kenneth Graunke169c6452014-04-06 23:25:00 -07002678 ctx->Const.NativeIntegers))
Eric Anholt2f4fe152010-08-10 13:06:49 -07002679 ;
Kenneth Graunke4f22db52014-04-26 00:18:54 -07002680
2681 lower_const_arrays_to_uniforms(prog->_LinkedShaders[i]->ir);
Ian Romanicka7ba9a72010-07-20 13:36:32 -07002682 }
Ian Romanick13e10e42010-06-21 12:03:24 -07002683
Iago Toral Quiroga75896832014-06-16 16:09:53 +02002684 /* Check and validate stream emissions in geometry shaders */
2685 validate_geometry_shader_emissions(ctx, prog);
2686
Paul Berry50895d42012-12-05 07:17:07 -08002687 /* Mark all generic shader inputs and outputs as unpaired. */
Ian Romanick6bdc1d92014-02-11 16:37:56 -08002688 for (unsigned i = MESA_SHADER_VERTEX; i <= MESA_SHADER_FRAGMENT; i++) {
2689 if (prog->_LinkedShaders[i] != NULL) {
2690 link_invalidate_variable_locations(prog->_LinkedShaders[i]->ir);
2691 }
Paul Berry50895d42012-12-05 07:17:07 -08002692 }
2693
Ian Romanickd32d4f72011-06-27 17:59:58 -07002694 /* FINISHME: The value of the max_attribute_index parameter is
2695 * FINISHME: implementation dependent based on the value of
2696 * FINISHME: GL_MAX_VERTEX_ATTRIBS. GL_MAX_VERTEX_ATTRIBS must be
2697 * FINISHME: at least 16, so hardcode 16 for now.
2698 */
2699 if (!assign_attribute_or_color_locations(prog, MESA_SHADER_VERTEX, 16)) {
Ian Romanickd32d4f72011-06-27 17:59:58 -07002700 goto done;
2701 }
2702
Dave Airlie1256a5d2012-03-24 13:33:41 +00002703 if (!assign_attribute_or_color_locations(prog, MESA_SHADER_FRAGMENT, MAX2(ctx->Const.MaxDrawBuffers, ctx->Const.MaxDualSourceDrawBuffers))) {
Ian Romanickd32d4f72011-06-27 17:59:58 -07002704 goto done;
Ian Romanick40e114b2010-08-17 14:55:50 -07002705 }
2706
Marek Olšák284d9542013-06-12 02:18:09 +02002707 unsigned first;
Paul Berry28e526d2014-01-06 19:47:25 -08002708 for (first = 0; first <= MESA_SHADER_FRAGMENT; first++) {
Marek Olšák284d9542013-06-12 02:18:09 +02002709 if (prog->_LinkedShaders[first] != NULL)
Ian Romanick3322fba2010-10-14 13:28:42 -07002710 break;
2711 }
2712
Paul Berry871ddb92011-11-05 11:17:32 -07002713 if (num_tfeedback_decls != 0) {
2714 /* From GL_EXT_transform_feedback:
2715 * A program will fail to link if:
2716 *
2717 * * the <count> specified by TransformFeedbackVaryingsEXT is
2718 * non-zero, but the program object has no vertex or geometry
2719 * shader;
2720 */
Bryan Cain25480922013-02-15 09:46:50 -06002721 if (first == MESA_SHADER_FRAGMENT) {
Paul Berry871ddb92011-11-05 11:17:32 -07002722 linker_error(prog, "Transform feedback varyings specified, but "
Andres Gomezf9fc3ae2014-11-18 08:43:35 -07002723 "no vertex or geometry shader is present.\n");
Paul Berry871ddb92011-11-05 11:17:32 -07002724 goto done;
2725 }
2726
2727 tfeedback_decls = ralloc_array(mem_ctx, tfeedback_decl,
2728 prog->TransformFeedback.NumVarying);
Paul Berry456279b2011-12-26 19:39:25 -08002729 if (!parse_tfeedback_decls(ctx, prog, mem_ctx, num_tfeedback_decls,
Paul Berry871ddb92011-11-05 11:17:32 -07002730 prog->TransformFeedback.VaryingNames,
2731 tfeedback_decls))
2732 goto done;
2733 }
2734
Marek Olšák284d9542013-06-12 02:18:09 +02002735 /* Linking the stages in the opposite order (from fragment to vertex)
2736 * ensures that inter-shader outputs written to in an earlier stage are
2737 * eliminated if they are (transitively) not used in a later stage.
2738 */
2739 int last, next;
Paul Berry28e526d2014-01-06 19:47:25 -08002740 for (last = MESA_SHADER_FRAGMENT; last >= 0; last--) {
Marek Olšák284d9542013-06-12 02:18:09 +02002741 if (prog->_LinkedShaders[last] != NULL)
2742 break;
Ian Romanick3322fba2010-10-14 13:28:42 -07002743 }
Ian Romanick13e10e42010-06-21 12:03:24 -07002744
Marek Olšák284d9542013-06-12 02:18:09 +02002745 if (last >= 0 && last < MESA_SHADER_FRAGMENT) {
2746 gl_shader *const sh = prog->_LinkedShaders[last];
2747
Ian Romanicka909b992014-12-01 14:07:30 -08002748 if (first == MESA_SHADER_GEOMETRY) {
2749 /* There was no vertex shader, but we still have to assign varying
2750 * locations for use by geometry shader inputs in SSO.
2751 *
2752 * If the shader is not separable (i.e., prog->SeparateShader is
2753 * false), linking will have already failed when first is
2754 * MESA_SHADER_GEOMETRY.
2755 */
2756 if (!assign_varying_locations(ctx, mem_ctx, prog,
2757 NULL, sh,
2758 num_tfeedback_decls, tfeedback_decls,
2759 prog->Geom.VerticesIn))
2760 goto done;
2761 }
2762
Ian Romanick1ff5a2b2014-02-14 12:10:27 -08002763 if (num_tfeedback_decls != 0 || prog->SeparateShader) {
Marek Olšák284d9542013-06-12 02:18:09 +02002764 /* There was no fragment shader, but we still have to assign varying
2765 * locations for use by transform feedback.
2766 */
2767 if (!assign_varying_locations(ctx, mem_ctx, prog,
2768 sh, NULL,
Paul Berry3b0cf702013-04-10 06:48:42 -07002769 num_tfeedback_decls, tfeedback_decls,
2770 0))
Marek Olšák284d9542013-06-12 02:18:09 +02002771 goto done;
2772 }
2773
Marek Olšákd13003f2013-08-09 22:34:45 +02002774 do_dead_builtin_varyings(ctx, sh, NULL,
Marek Olšákb3d8b4c2013-06-12 13:23:48 +02002775 num_tfeedback_decls, tfeedback_decls);
2776
Ian Romanick1ff5a2b2014-02-14 12:10:27 -08002777 if (!prog->SeparateShader)
2778 demote_shader_inputs_and_outputs(sh, ir_var_shader_out);
Marek Olšák284d9542013-06-12 02:18:09 +02002779
2780 /* Eliminate code that is now dead due to unused outputs being demoted.
Paul Berry871ddb92011-11-05 11:17:32 -07002781 */
Marek Olšák284d9542013-06-12 02:18:09 +02002782 while (do_dead_code(sh->ir, false))
2783 ;
2784 }
2785 else if (first == MESA_SHADER_FRAGMENT) {
Marek Olšákb3d8b4c2013-06-12 13:23:48 +02002786 /* If the program only contains a fragment shader...
Marek Olšák284d9542013-06-12 02:18:09 +02002787 */
2788 gl_shader *const sh = prog->_LinkedShaders[first];
2789
Marek Olšákd13003f2013-08-09 22:34:45 +02002790 do_dead_builtin_varyings(ctx, NULL, sh,
Marek Olšákb3d8b4c2013-06-12 13:23:48 +02002791 num_tfeedback_decls, tfeedback_decls);
2792
Ian Romanick1ff5a2b2014-02-14 12:10:27 -08002793 if (prog->SeparateShader) {
2794 if (!assign_varying_locations(ctx, mem_ctx, prog,
2795 NULL /* producer */,
2796 sh /* consumer */,
2797 0 /* num_tfeedback_decls */,
2798 NULL /* tfeedback_decls */,
2799 0 /* gs_input_vertices */))
2800 goto done;
2801 } else
2802 demote_shader_inputs_and_outputs(sh, ir_var_shader_in);
Marek Olšák284d9542013-06-12 02:18:09 +02002803
2804 while (do_dead_code(sh->ir, false))
2805 ;
2806 }
2807
2808 next = last;
2809 for (int i = next - 1; i >= 0; i--) {
2810 if (prog->_LinkedShaders[i] == NULL)
2811 continue;
2812
2813 gl_shader *const sh_i = prog->_LinkedShaders[i];
2814 gl_shader *const sh_next = prog->_LinkedShaders[next];
Paul Berry3b0cf702013-04-10 06:48:42 -07002815 unsigned gs_input_vertices =
2816 next == MESA_SHADER_GEOMETRY ? prog->Geom.VerticesIn : 0;
Marek Olšák284d9542013-06-12 02:18:09 +02002817
2818 if (!assign_varying_locations(ctx, mem_ctx, prog, sh_i, sh_next,
2819 next == MESA_SHADER_FRAGMENT ? num_tfeedback_decls : 0,
Paul Berry3b0cf702013-04-10 06:48:42 -07002820 tfeedback_decls, gs_input_vertices))
Paul Berry871ddb92011-11-05 11:17:32 -07002821 goto done;
Marek Olšák284d9542013-06-12 02:18:09 +02002822
Marek Olšákd13003f2013-08-09 22:34:45 +02002823 do_dead_builtin_varyings(ctx, sh_i, sh_next,
Marek Olšákb3d8b4c2013-06-12 13:23:48 +02002824 next == MESA_SHADER_FRAGMENT ? num_tfeedback_decls : 0,
2825 tfeedback_decls);
2826
Marek Olšák284d9542013-06-12 02:18:09 +02002827 demote_shader_inputs_and_outputs(sh_i, ir_var_shader_out);
2828 demote_shader_inputs_and_outputs(sh_next, ir_var_shader_in);
2829
2830 /* Eliminate code that is now dead due to unused outputs being demoted.
2831 */
2832 while (do_dead_code(sh_i->ir, false))
2833 ;
2834 while (do_dead_code(sh_next->ir, false))
2835 ;
2836
Marek Olšák3c555822013-06-13 03:17:22 +02002837 /* This must be done after all dead varyings are eliminated. */
Ian Romanick42305fb2013-09-10 12:00:34 -05002838 if (!check_against_output_limit(ctx, prog, sh_i))
2839 goto done;
2840 if (!check_against_input_limit(ctx, prog, sh_next))
Marek Olšák3c555822013-06-13 03:17:22 +02002841 goto done;
2842
Marek Olšák284d9542013-06-12 02:18:09 +02002843 next = i;
Paul Berry871ddb92011-11-05 11:17:32 -07002844 }
2845
2846 if (!store_tfeedback_info(ctx, prog, num_tfeedback_decls, tfeedback_decls))
2847 goto done;
2848
Ian Romanick960d7222011-10-21 11:21:02 -07002849 update_array_sizes(prog);
Matt Turner9e2e7c72014-08-08 19:46:05 -07002850 link_assign_uniform_locations(prog, ctx->Const.UniformBooleanTrue);
Francisco Jerez5c114932013-09-11 12:14:46 -07002851 link_assign_atomic_counter_resources(ctx, prog);
Marek Olšákec174a42011-11-18 15:00:10 +01002852 store_fragdepth_layout(prog);
Ian Romanick960d7222011-10-21 11:21:02 -07002853
Paul Berryb95d2372013-07-27 11:08:31 -07002854 check_resources(ctx, prog);
Francisco Jereze51158f2013-11-22 15:53:26 -08002855 check_image_resources(ctx, prog);
Francisco Jerez5c114932013-09-11 12:14:46 -07002856 link_check_atomic_counter_resources(ctx, prog);
2857
Paul Berryb95d2372013-07-27 11:08:31 -07002858 if (!prog->LinkStatus)
Ian Romanick92f81592011-11-08 12:37:19 -08002859 goto done;
2860
Ian Romanickce9171f2011-02-03 17:10:14 -08002861 /* OpenGL ES requires that a vertex shader and a fragment shader both be
Anuj Phogat03597cf2013-12-19 14:17:19 -08002862 * present in a linked program. GL_ARB_ES2_compatibility doesn't say
2863 * anything about shader linking when one of the shaders (vertex or
2864 * fragment shader) is absent. So, the extension shouldn't change the
2865 * behavior specified in GLSL specification.
Ian Romanickce9171f2011-02-03 17:10:14 -08002866 */
Ian Romanickf64bfb22014-03-27 10:29:30 -07002867 if (!prog->SeparateShader && ctx->API == API_OPENGLES2) {
Ian Romanickce9171f2011-02-03 17:10:14 -08002868 if (prog->_LinkedShaders[MESA_SHADER_VERTEX] == NULL) {
Ian Romanick586e7412011-07-28 14:04:09 -07002869 linker_error(prog, "program lacks a vertex shader\n");
Ian Romanickce9171f2011-02-03 17:10:14 -08002870 } else if (prog->_LinkedShaders[MESA_SHADER_FRAGMENT] == NULL) {
Ian Romanick586e7412011-07-28 14:04:09 -07002871 linker_error(prog, "program lacks a fragment shader\n");
Ian Romanickce9171f2011-02-03 17:10:14 -08002872 }
2873 }
2874
Ian Romanick13e10e42010-06-21 12:03:24 -07002875 /* FINISHME: Assign fragment shader output locations. */
2876
Ian Romanick832dfa52010-06-17 15:04:20 -07002877done:
Paul Berry665b8d72014-01-07 10:11:39 -08002878 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
Paul Berrycd18ba12014-01-07 08:56:57 -08002879 free(shader_list[i]);
Kenneth Graunke2da02e72010-11-17 11:03:57 -08002880 if (prog->_LinkedShaders[i] == NULL)
2881 continue;
2882
Paul Berryd7fa9eb2013-11-22 12:37:22 -08002883 /* Do a final validation step to make sure that the IR wasn't
2884 * invalidated by any modifications performed after intrastage linking.
2885 */
2886 validate_ir_tree(prog->_LinkedShaders[i]->ir);
2887
Kenneth Graunke2da02e72010-11-17 11:03:57 -08002888 /* Retain any live IR, but trash the rest. */
2889 reparent_ir(prog->_LinkedShaders[i]->ir, prog->_LinkedShaders[i]->ir);
Ian Romanick7bbcc0b2011-09-30 14:21:10 -07002890
2891 /* The symbol table in the linked shaders may contain references to
2892 * variables that were removed (e.g., unused uniforms). Since it may
2893 * contain junk, there is no possible valid use. Delete it and set the
2894 * pointer to NULL.
2895 */
2896 delete prog->_LinkedShaders[i]->symbols;
2897 prog->_LinkedShaders[i]->symbols = NULL;
Kenneth Graunke2da02e72010-11-17 11:03:57 -08002898 }
2899
Kenneth Graunked3073f52011-01-21 14:32:31 -08002900 ralloc_free(mem_ctx);
Ian Romanick832dfa52010-06-17 15:04:20 -07002901}