blob: d46744eeda5c7b8223411203535da2e6e1232f1b [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 */
66#include <cstdlib>
67#include <cstdio>
Ian Romanickf36460e2010-06-23 12:07:22 -070068#include <cstdarg>
69
70extern "C" {
71#include <talloc.h>
72}
Ian Romanick832dfa52010-06-17 15:04:20 -070073
Ian Romanick0ad22cd2010-06-21 17:18:31 -070074#include "main/mtypes.h"
Ian Romanick832dfa52010-06-17 15:04:20 -070075#include "glsl_symbol_table.h"
76#include "glsl_parser_extras.h"
77#include "ir.h"
Ian Romanick019a59b2010-06-21 16:10:42 -070078#include "ir_optimization.h"
Ian Romanick832dfa52010-06-17 15:04:20 -070079#include "program.h"
Ian Romanick019a59b2010-06-21 16:10:42 -070080#include "hash_table.h"
Ian Romanick3fb87872010-07-09 14:09:34 -070081#include "shader_api.h"
Ian Romanick832dfa52010-06-17 15:04:20 -070082
83/**
84 * Visitor that determines whether or not a variable is ever written.
85 */
86class find_assignment_visitor : public ir_hierarchical_visitor {
87public:
88 find_assignment_visitor(const char *name)
89 : name(name), found(false)
90 {
91 /* empty */
92 }
93
94 virtual ir_visitor_status visit_enter(ir_assignment *ir)
95 {
96 ir_variable *const var = ir->lhs->variable_referenced();
97
98 if (strcmp(name, var->name) == 0) {
99 found = true;
100 return visit_stop;
101 }
102
103 return visit_continue_with_parent;
104 }
105
106 bool variable_found()
107 {
108 return found;
109 }
110
111private:
112 const char *name; /**< Find writes to a variable with this name. */
113 bool found; /**< Was a write to the variable found? */
114};
115
Ian Romanickc93b8f12010-06-17 15:20:22 -0700116
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700117void
Eric Anholt849e1812010-06-30 11:49:17 -0700118linker_error_printf(gl_shader_program *prog, const char *fmt, ...)
Ian Romanickf36460e2010-06-23 12:07:22 -0700119{
120 va_list ap;
121
122 prog->InfoLog = talloc_strdup_append(prog->InfoLog, "error: ");
123 va_start(ap, fmt);
124 prog->InfoLog = talloc_vasprintf_append(prog->InfoLog, fmt, ap);
125 va_end(ap);
126}
127
128
129void
Eric Anholt16b68b12010-06-30 11:05:43 -0700130invalidate_variable_locations(gl_shader *sh, enum ir_variable_mode mode,
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700131 int generic_base)
132{
Eric Anholt16b68b12010-06-30 11:05:43 -0700133 foreach_list(node, sh->ir) {
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700134 ir_variable *const var = ((ir_instruction *) node)->as_variable();
135
136 if ((var == NULL) || (var->mode != (unsigned) mode))
137 continue;
138
139 /* Only assign locations for generic attributes / varyings / etc.
140 */
141 if (var->location >= generic_base)
142 var->location = -1;
143 }
144}
145
146
Ian Romanickc93b8f12010-06-17 15:20:22 -0700147/**
Ian Romanick69846702010-06-22 17:29:19 -0700148 * Determine the number of attribute slots required for a particular type
149 *
150 * This code is here because it implements the language rules of a specific
151 * GLSL version. Since it's a property of the language and not a property of
152 * types in general, it doesn't really belong in glsl_type.
153 */
154unsigned
155count_attribute_slots(const glsl_type *t)
156{
157 /* From page 31 (page 37 of the PDF) of the GLSL 1.50 spec:
158 *
159 * "A scalar input counts the same amount against this limit as a vec4,
160 * so applications may want to consider packing groups of four
161 * unrelated float inputs together into a vector to better utilize the
162 * capabilities of the underlying hardware. A matrix input will use up
163 * multiple locations. The number of locations used will equal the
164 * number of columns in the matrix."
165 *
166 * The spec does not explicitly say how arrays are counted. However, it
167 * should be safe to assume the total number of slots consumed by an array
168 * is the number of entries in the array multiplied by the number of slots
169 * consumed by a single element of the array.
170 */
171
172 if (t->is_array())
173 return t->array_size() * count_attribute_slots(t->element_type());
174
175 if (t->is_matrix())
176 return t->matrix_columns;
177
178 return 1;
179}
180
181
182/**
Ian Romanickc93b8f12010-06-17 15:20:22 -0700183 * Verify that a vertex shader executable meets all semantic requirements
184 *
185 * \param shader Vertex shader executable to be verified
186 */
Ian Romanick832dfa52010-06-17 15:04:20 -0700187bool
Eric Anholt849e1812010-06-30 11:49:17 -0700188validate_vertex_shader_executable(struct gl_shader_program *prog,
Eric Anholt16b68b12010-06-30 11:05:43 -0700189 struct gl_shader *shader)
Ian Romanick832dfa52010-06-17 15:04:20 -0700190{
191 if (shader == NULL)
192 return true;
193
194 if (!shader->symbols->get_function("main")) {
Ian Romanickf36460e2010-06-23 12:07:22 -0700195 linker_error_printf(prog, "vertex shader lacks `main'\n");
Ian Romanick832dfa52010-06-17 15:04:20 -0700196 return false;
197 }
198
199 find_assignment_visitor find("gl_Position");
Eric Anholt16b68b12010-06-30 11:05:43 -0700200 find.run(shader->ir);
Ian Romanick832dfa52010-06-17 15:04:20 -0700201 if (!find.variable_found()) {
Ian Romanickf36460e2010-06-23 12:07:22 -0700202 linker_error_printf(prog,
203 "vertex shader does not write to `gl_Position'\n");
Ian Romanick832dfa52010-06-17 15:04:20 -0700204 return false;
205 }
206
207 return true;
208}
209
210
Ian Romanickc93b8f12010-06-17 15:20:22 -0700211/**
212 * Verify that a fragment shader executable meets all semantic requirements
213 *
214 * \param shader Fragment shader executable to be verified
215 */
Ian Romanick832dfa52010-06-17 15:04:20 -0700216bool
Eric Anholt849e1812010-06-30 11:49:17 -0700217validate_fragment_shader_executable(struct gl_shader_program *prog,
Eric Anholt16b68b12010-06-30 11:05:43 -0700218 struct gl_shader *shader)
Ian Romanick832dfa52010-06-17 15:04:20 -0700219{
220 if (shader == NULL)
221 return true;
222
223 if (!shader->symbols->get_function("main")) {
Ian Romanickf36460e2010-06-23 12:07:22 -0700224 linker_error_printf(prog, "fragment shader lacks `main'\n");
Ian Romanick832dfa52010-06-17 15:04:20 -0700225 return false;
226 }
227
228 find_assignment_visitor frag_color("gl_FragColor");
229 find_assignment_visitor frag_data("gl_FragData");
230
Eric Anholt16b68b12010-06-30 11:05:43 -0700231 frag_color.run(shader->ir);
232 frag_data.run(shader->ir);
Ian Romanick832dfa52010-06-17 15:04:20 -0700233
Ian Romanick832dfa52010-06-17 15:04:20 -0700234 if (frag_color.variable_found() && frag_data.variable_found()) {
Ian Romanickf36460e2010-06-23 12:07:22 -0700235 linker_error_printf(prog, "fragment shader writes to both "
236 "`gl_FragColor' and `gl_FragData'\n");
Ian Romanick832dfa52010-06-17 15:04:20 -0700237 return false;
238 }
239
240 return true;
241}
242
243
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700244/**
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700245 * Generate a string describing the mode of a variable
246 */
247static const char *
248mode_string(const ir_variable *var)
249{
250 switch (var->mode) {
251 case ir_var_auto:
252 return (var->read_only) ? "global constant" : "global variable";
253
254 case ir_var_uniform: return "uniform";
255 case ir_var_in: return "shader input";
256 case ir_var_out: return "shader output";
257 case ir_var_inout: return "shader inout";
258 default:
259 assert(!"Should not get here.");
260 return "invalid variable";
261 }
262}
263
264
265/**
266 * Perform validation of global variables used across multiple shaders
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700267 */
268bool
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700269cross_validate_globals(struct gl_shader_program *prog,
270 struct gl_shader **shader_list,
271 unsigned num_shaders,
272 bool uniforms_only)
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700273{
274 /* Examine all of the uniforms in all of the shaders and cross validate
275 * them.
276 */
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700277 glsl_symbol_table variables;
278 for (unsigned i = 0; i < num_shaders; i++) {
279 foreach_list(node, shader_list[i]->ir) {
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700280 ir_variable *const var = ((ir_instruction *) node)->as_variable();
281
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700282 if (var == NULL)
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700283 continue;
284
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700285 if (uniforms_only && (var->mode != ir_var_uniform))
286 continue;
287
288 /* If a global with this name has already been seen, verify that the
289 * new instance has the same type. In addition, if the globals have
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700290 * initializers, the values of the initializers must be the same.
291 */
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700292 ir_variable *const existing = variables.get_variable(var->name);
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700293 if (existing != NULL) {
294 if (var->type != existing->type) {
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700295 linker_error_printf(prog, "%s `%s' declared as type "
Ian Romanickf36460e2010-06-23 12:07:22 -0700296 "`%s' and type `%s'\n",
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700297 mode_string(var),
Ian Romanickf36460e2010-06-23 12:07:22 -0700298 var->name, var->type->name,
299 existing->type->name);
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700300 return false;
301 }
302
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700303 /* FINISHME: Handle non-constant initializers.
304 */
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700305 if (var->constant_value != NULL) {
306 if (existing->constant_value != NULL) {
307 if (!var->constant_value->has_value(existing->constant_value)) {
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700308 linker_error_printf(prog, "initializers for %s "
Ian Romanickf36460e2010-06-23 12:07:22 -0700309 "`%s' have differing values\n",
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700310 mode_string(var), var->name);
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700311 return false;
312 }
313 } else
314 /* If the first-seen instance of a particular uniform did not
315 * have an initializer but a later instance does, copy the
316 * initializer to the version stored in the symbol table.
317 */
Ian Romanick4e6a3e02010-07-13 09:22:35 -0700318 existing->constant_value = var->constant_value->clone(NULL);
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700319 }
320 } else
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700321 variables.add_variable(var->name, var);
Ian Romanickcc22c5a2010-06-18 17:13:42 -0700322 }
323 }
324
325 return true;
326}
327
328
Ian Romanick37101922010-06-18 19:02:10 -0700329/**
Ian Romanicke2e5d0d2010-06-29 18:47:11 -0700330 * Perform validation of uniforms used across multiple shader stages
331 */
332bool
333cross_validate_uniforms(struct gl_shader_program *prog)
334{
335 return cross_validate_globals(prog, prog->_LinkedShaders,
336 prog->_NumLinkedShaders, true);
337}
338
339
340/**
Ian Romanick37101922010-06-18 19:02:10 -0700341 * Validate that outputs from one stage match inputs of another
342 */
343bool
Eric Anholt849e1812010-06-30 11:49:17 -0700344cross_validate_outputs_to_inputs(struct gl_shader_program *prog,
Eric Anholt16b68b12010-06-30 11:05:43 -0700345 gl_shader *producer, gl_shader *consumer)
Ian Romanick37101922010-06-18 19:02:10 -0700346{
347 glsl_symbol_table parameters;
348 /* FINISHME: Figure these out dynamically. */
349 const char *const producer_stage = "vertex";
350 const char *const consumer_stage = "fragment";
351
352 /* Find all shader outputs in the "producer" stage.
353 */
Eric Anholt16b68b12010-06-30 11:05:43 -0700354 foreach_list(node, producer->ir) {
Ian Romanick37101922010-06-18 19:02:10 -0700355 ir_variable *const var = ((ir_instruction *) node)->as_variable();
356
357 /* FINISHME: For geometry shaders, this should also look for inout
358 * FINISHME: variables.
359 */
360 if ((var == NULL) || (var->mode != ir_var_out))
361 continue;
362
363 parameters.add_variable(var->name, var);
364 }
365
366
367 /* Find all shader inputs in the "consumer" stage. Any variables that have
368 * matching outputs already in the symbol table must have the same type and
369 * qualifiers.
370 */
Eric Anholt16b68b12010-06-30 11:05:43 -0700371 foreach_list(node, consumer->ir) {
Ian Romanick37101922010-06-18 19:02:10 -0700372 ir_variable *const input = ((ir_instruction *) node)->as_variable();
373
374 /* FINISHME: For geometry shaders, this should also look for inout
375 * FINISHME: variables.
376 */
377 if ((input == NULL) || (input->mode != ir_var_in))
378 continue;
379
380 ir_variable *const output = parameters.get_variable(input->name);
381 if (output != NULL) {
382 /* Check that the types match between stages.
383 */
384 if (input->type != output->type) {
Ian Romanickf36460e2010-06-23 12:07:22 -0700385 linker_error_printf(prog,
386 "%s shader output `%s' delcared as "
387 "type `%s', but %s shader input declared "
388 "as type `%s'\n",
389 producer_stage, output->name,
390 output->type->name,
391 consumer_stage, input->type->name);
Ian Romanick37101922010-06-18 19:02:10 -0700392 return false;
393 }
394
395 /* Check that all of the qualifiers match between stages.
396 */
397 if (input->centroid != output->centroid) {
Ian Romanickf36460e2010-06-23 12:07:22 -0700398 linker_error_printf(prog,
399 "%s shader output `%s' %s centroid qualifier, "
400 "but %s shader input %s centroid qualifier\n",
401 producer_stage,
402 output->name,
403 (output->centroid) ? "has" : "lacks",
404 consumer_stage,
405 (input->centroid) ? "has" : "lacks");
Ian Romanick37101922010-06-18 19:02:10 -0700406 return false;
407 }
408
409 if (input->invariant != output->invariant) {
Ian Romanickf36460e2010-06-23 12:07:22 -0700410 linker_error_printf(prog,
411 "%s shader output `%s' %s invariant qualifier, "
412 "but %s shader input %s invariant qualifier\n",
413 producer_stage,
414 output->name,
415 (output->invariant) ? "has" : "lacks",
416 consumer_stage,
417 (input->invariant) ? "has" : "lacks");
Ian Romanick37101922010-06-18 19:02:10 -0700418 return false;
419 }
420
421 if (input->interpolation != output->interpolation) {
Ian Romanickf36460e2010-06-23 12:07:22 -0700422 linker_error_printf(prog,
423 "%s shader output `%s' specifies %s "
424 "interpolation qualifier, "
425 "but %s shader input specifies %s "
426 "interpolation qualifier\n",
427 producer_stage,
428 output->name,
429 output->interpolation_string(),
430 consumer_stage,
431 input->interpolation_string());
Ian Romanick37101922010-06-18 19:02:10 -0700432 return false;
433 }
434 }
435 }
436
437 return true;
438}
439
440
Ian Romanick3fb87872010-07-09 14:09:34 -0700441/**
442 * Populates a shaders symbol table with all global declarations
443 */
444static void
445populate_symbol_table(gl_shader *sh)
446{
447 sh->symbols = new(sh) glsl_symbol_table;
448
449 foreach_list(node, sh->ir) {
450 ir_instruction *const inst = (ir_instruction *) node;
451 ir_variable *var;
452 ir_function *func;
453
454 if ((func = inst->as_function()) != NULL) {
455 sh->symbols->add_function(func->name, func);
456 } else if ((var = inst->as_variable()) != NULL) {
457 sh->symbols->add_variable(var->name, var);
458 }
459 }
460}
461
462
463/**
Ian Romanick31a97862010-07-12 18:48:50 -0700464 * Remap variables referenced in an instruction tree
465 *
466 * This is used when instruction trees are cloned from one shader and placed in
467 * another. These trees will contain references to \c ir_variable nodes that
468 * do not exist in the target shader. This function finds these \c ir_variable
469 * references and replaces the references with matching variables in the target
470 * shader.
471 *
472 * If there is no matching variable in the target shader, a clone of the
473 * \c ir_variable is made and added to the target shader. The new variable is
474 * added to \b both the instruction stream and the symbol table.
475 *
476 * \param inst IR tree that is to be processed.
477 * \param symbols Symbol table containing global scope symbols in the
478 * linked shader.
479 * \param instructions Instruction stream where new variable declarations
480 * should be added.
481 */
482void
483remap_variables(ir_instruction *inst, glsl_symbol_table *symbols,
484 exec_list *instructions)
485{
486 class remap_visitor : public ir_hierarchical_visitor {
487 public:
488 remap_visitor(glsl_symbol_table *symbols, exec_list *instructions)
489 {
490 this->symbols = symbols;
491 this->instructions = instructions;
492 }
493
494 virtual ir_visitor_status visit(ir_dereference_variable *ir)
495 {
496 ir_variable *const existing =
497 this->symbols->get_variable(ir->var->name);
498 if (existing != NULL)
499 ir->var = existing;
500 else {
501 ir_variable *copy = ir->var->clone(NULL);
502
503 this->symbols->add_variable(copy->name, copy);
504 this->instructions->push_head(copy);
505 }
506
507 return visit_continue;
508 }
509
510 private:
511 glsl_symbol_table *symbols;
512 exec_list *instructions;
513 };
514
515 remap_visitor v(symbols, instructions);
516
517 inst->accept(&v);
518}
519
520
521/**
522 * Move non-declarations from one instruction stream to another
523 *
524 * The intended usage pattern of this function is to pass the pointer to the
525 * head sentinal of a list (i.e., a pointer to the list cast to an \c exec_node
526 * pointer) for \c last and \c false for \c make_copies on the first
527 * call. Successive calls pass the return value of the previous call for
528 * \c last and \c true for \c make_copies.
529 *
530 * \param instructions Source instruction stream
531 * \param last Instruction after which new instructions should be
532 * inserted in the target instruction stream
533 * \param make_copies Flag selecting whether instructions in \c instructions
534 * should be copied (via \c ir_instruction::clone) into the
535 * target list or moved.
536 *
537 * \return
538 * The new "last" instruction in the target instruction stream. This pointer
539 * is suitable for use as the \c last parameter of a later call to this
540 * function.
541 */
542exec_node *
543move_non_declarations(exec_list *instructions, exec_node *last,
544 bool make_copies, gl_shader *target)
545{
546 foreach_list(node, instructions) {
547 ir_instruction *inst = (ir_instruction *) node;
548
549 if (inst->as_variable() || inst->as_function())
550 continue;
551
552 assert(inst->as_assignment());
553
554 if (make_copies) {
555 inst = inst->clone(NULL);
556 remap_variables(inst, target->symbols, target->ir);
557 } else {
558 inst->remove();
559 }
560
561 last->insert_after(inst);
562 last = inst;
563 }
564
565 return last;
566}
567
568/**
Ian Romanick15ce87e2010-07-09 15:28:22 -0700569 * Get the function signature for main from a shader
570 */
571static ir_function_signature *
572get_main_function_signature(gl_shader *sh)
573{
574 ir_function *const f = sh->symbols->get_function("main");
575 if (f != NULL) {
576 exec_list void_parameters;
577
578 /* Look for the 'void main()' signature and ensure that it's defined.
579 * This keeps the linker from accidentally pick a shader that just
580 * contains a prototype for main.
581 *
582 * We don't have to check for multiple definitions of main (in multiple
583 * shaders) because that would have already been caught above.
584 */
585 ir_function_signature *sig = f->matching_signature(&void_parameters);
586 if ((sig != NULL) && sig->is_defined) {
587 return sig;
588 }
589 }
590
591 return NULL;
592}
593
594
595/**
Ian Romanick3fb87872010-07-09 14:09:34 -0700596 * Combine a group of shaders for a single stage to generate a linked shader
597 *
598 * \note
599 * If this function is supplied a single shader, it is cloned, and the new
600 * shader is returned.
601 */
602static struct gl_shader *
603link_intrastage_shaders(struct gl_shader_program *prog,
604 struct gl_shader **shader_list,
605 unsigned num_shaders)
606{
Ian Romanick13f782c2010-06-29 18:53:38 -0700607 /* Check that global variables defined in multiple shaders are consistent.
608 */
609 if (!cross_validate_globals(prog, shader_list, num_shaders, false))
610 return NULL;
611
612 /* Check that there is only a single definition of each function signature
613 * across all shaders.
614 */
615 for (unsigned i = 0; i < (num_shaders - 1); i++) {
616 foreach_list(node, shader_list[i]->ir) {
617 ir_function *const f = ((ir_instruction *) node)->as_function();
618
619 if (f == NULL)
620 continue;
621
622 for (unsigned j = i + 1; j < num_shaders; j++) {
623 ir_function *const other =
624 shader_list[j]->symbols->get_function(f->name);
625
626 /* If the other shader has no function (and therefore no function
627 * signatures) with the same name, skip to the next shader.
628 */
629 if (other == NULL)
630 continue;
631
632 foreach_iter (exec_list_iterator, iter, *f) {
633 ir_function_signature *sig =
634 (ir_function_signature *) iter.get();
635
636 if (!sig->is_defined || sig->is_built_in)
637 continue;
638
639 ir_function_signature *other_sig =
640 other->exact_matching_signature(& sig->parameters);
641
642 if ((other_sig != NULL) && other_sig->is_defined
643 && !other_sig->is_built_in) {
644 linker_error_printf(prog,
645 "function `%s' is multiply defined",
646 f->name);
647 return NULL;
648 }
649 }
650 }
651 }
652 }
653
654 /* Find the shader that defines main, and make a clone of it.
655 *
656 * Starting with the clone, search for undefined references. If one is
657 * found, find the shader that defines it. Clone the reference and add
658 * it to the shader. Repeat until there are no undefined references or
659 * until a reference cannot be resolved.
660 */
Ian Romanick15ce87e2010-07-09 15:28:22 -0700661 gl_shader *main = NULL;
662 for (unsigned i = 0; i < num_shaders; i++) {
663 if (get_main_function_signature(shader_list[i]) != NULL) {
664 main = shader_list[i];
665 break;
666 }
667 }
Ian Romanick13f782c2010-06-29 18:53:38 -0700668
Ian Romanick15ce87e2010-07-09 15:28:22 -0700669 if (main == NULL) {
670 linker_error_printf(prog, "%s shader lacks `main'\n",
671 (shader_list[0]->Type == GL_VERTEX_SHADER)
672 ? "vertex" : "fragment");
673 return NULL;
674 }
675
676 gl_shader *const linked = _mesa_new_shader(NULL, 0, main->Type);
677 linked->ir = new(linked) exec_list;
678 clone_ir_list(linked->ir, main->ir);
679
680 populate_symbol_table(linked);
Ian Romanick13f782c2010-06-29 18:53:38 -0700681
Ian Romanick31a97862010-07-12 18:48:50 -0700682 /* The a pointer to the main function in the final linked shader (i.e., the
683 * copy of the original shader that contained the main function).
684 */
685 ir_function_signature *const main_sig = get_main_function_signature(linked);
686
687 /* Move any instructions other than variable declarations or function
688 * declarations into main.
689 */
Ian Romanick9303e352010-07-19 12:33:54 -0700690 exec_node *insertion_point =
691 move_non_declarations(linked->ir, (exec_node *) &main_sig->body, false,
692 linked);
693
Ian Romanick31a97862010-07-12 18:48:50 -0700694 for (unsigned i = 0; i < num_shaders; i++) {
Ian Romanick9303e352010-07-19 12:33:54 -0700695 if (shader_list[i] == main)
696 continue;
697
Ian Romanick31a97862010-07-12 18:48:50 -0700698 insertion_point = move_non_declarations(shader_list[i]->ir,
Ian Romanick9303e352010-07-19 12:33:54 -0700699 insertion_point, true, linked);
Ian Romanick31a97862010-07-12 18:48:50 -0700700 }
701
Ian Romanick13f782c2010-06-29 18:53:38 -0700702 /* Resolve initializers for global variables in the linked shader.
703 */
Ian Romanick3fb87872010-07-09 14:09:34 -0700704
Ian Romanick3fb87872010-07-09 14:09:34 -0700705 return linked;
706}
707
708
Ian Romanick019a59b2010-06-21 16:10:42 -0700709struct uniform_node {
710 exec_node link;
711 struct gl_uniform *u;
712 unsigned slots;
713};
714
Ian Romanickabee16e2010-06-21 16:16:05 -0700715void
Eric Anholt849e1812010-06-30 11:49:17 -0700716assign_uniform_locations(struct gl_shader_program *prog)
Ian Romanick019a59b2010-06-21 16:10:42 -0700717{
718 /* */
719 exec_list uniforms;
720 unsigned total_uniforms = 0;
721 hash_table *ht = hash_table_ctor(32, hash_table_string_hash,
722 hash_table_string_compare);
723
Ian Romanickabee16e2010-06-21 16:16:05 -0700724 for (unsigned i = 0; i < prog->_NumLinkedShaders; i++) {
Ian Romanick019a59b2010-06-21 16:10:42 -0700725 unsigned next_position = 0;
726
Eric Anholt16b68b12010-06-30 11:05:43 -0700727 foreach_list(node, prog->_LinkedShaders[i]->ir) {
Ian Romanick019a59b2010-06-21 16:10:42 -0700728 ir_variable *const var = ((ir_instruction *) node)->as_variable();
729
730 if ((var == NULL) || (var->mode != ir_var_uniform))
731 continue;
732
733 const unsigned vec4_slots = (var->component_slots() + 3) / 4;
734 assert(vec4_slots != 0);
735
736 uniform_node *n = (uniform_node *) hash_table_find(ht, var->name);
737 if (n == NULL) {
738 n = (uniform_node *) calloc(1, sizeof(struct uniform_node));
739 n->u = (gl_uniform *) calloc(vec4_slots, sizeof(struct gl_uniform));
740 n->slots = vec4_slots;
741
742 n->u[0].Name = strdup(var->name);
743 for (unsigned j = 1; j < vec4_slots; j++)
744 n->u[j].Name = n->u[0].Name;
745
746 hash_table_insert(ht, n, n->u[0].Name);
747 uniforms.push_tail(& n->link);
748 total_uniforms += vec4_slots;
749 }
750
751 if (var->constant_value != NULL)
752 for (unsigned j = 0; j < vec4_slots; j++)
753 n->u[j].Initialized = true;
754
755 var->location = next_position;
756
757 for (unsigned j = 0; j < vec4_slots; j++) {
Ian Romanickabee16e2010-06-21 16:16:05 -0700758 switch (prog->_LinkedShaders[i]->Type) {
Ian Romanick019a59b2010-06-21 16:10:42 -0700759 case GL_VERTEX_SHADER:
760 n->u[j].VertPos = next_position;
761 break;
762 case GL_FRAGMENT_SHADER:
763 n->u[j].FragPos = next_position;
764 break;
765 case GL_GEOMETRY_SHADER:
766 /* FINISHME: Support geometry shaders. */
Ian Romanickabee16e2010-06-21 16:16:05 -0700767 assert(prog->_LinkedShaders[i]->Type != GL_GEOMETRY_SHADER);
Ian Romanick019a59b2010-06-21 16:10:42 -0700768 break;
769 }
770
771 next_position++;
772 }
773 }
774 }
775
776 gl_uniform_list *ul = (gl_uniform_list *)
777 calloc(1, sizeof(gl_uniform_list));
778
779 ul->Size = total_uniforms;
780 ul->NumUniforms = total_uniforms;
781 ul->Uniforms = (gl_uniform *) calloc(total_uniforms, sizeof(gl_uniform));
782
783 unsigned idx = 0;
784 uniform_node *next;
785 for (uniform_node *node = (uniform_node *) uniforms.head
786 ; node->link.next != NULL
787 ; node = next) {
788 next = (uniform_node *) node->link.next;
789
790 node->link.remove();
791 memcpy(&ul->Uniforms[idx], node->u, sizeof(gl_uniform) * node->slots);
792 idx += node->slots;
793
794 free(node->u);
795 free(node);
796 }
797
798 hash_table_dtor(ht);
799
Ian Romanickabee16e2010-06-21 16:16:05 -0700800 prog->Uniforms = ul;
Ian Romanick019a59b2010-06-21 16:10:42 -0700801}
802
803
Ian Romanick69846702010-06-22 17:29:19 -0700804/**
805 * Find a contiguous set of available bits in a bitmask
806 *
807 * \param used_mask Bits representing used (1) and unused (0) locations
808 * \param needed_count Number of contiguous bits needed.
809 *
810 * \return
811 * Base location of the available bits on success or -1 on failure.
812 */
813int
814find_available_slots(unsigned used_mask, unsigned needed_count)
815{
816 unsigned needed_mask = (1 << needed_count) - 1;
817 const int max_bit_to_test = (8 * sizeof(used_mask)) - needed_count;
818
819 /* The comparison to 32 is redundant, but without it GCC emits "warning:
820 * cannot optimize possibly infinite loops" for the loop below.
821 */
822 if ((needed_count == 0) || (max_bit_to_test < 0) || (max_bit_to_test > 32))
823 return -1;
824
825 for (int i = 0; i <= max_bit_to_test; i++) {
826 if ((needed_mask & ~used_mask) == needed_mask)
827 return i;
828
829 needed_mask <<= 1;
830 }
831
832 return -1;
833}
834
835
836bool
Eric Anholt849e1812010-06-30 11:49:17 -0700837assign_attribute_locations(gl_shader_program *prog, unsigned max_attribute_index)
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700838{
Ian Romanick9342d262010-06-22 17:41:37 -0700839 /* Mark invalid attribute locations as being used.
840 */
841 unsigned used_locations = (max_attribute_index >= 32)
842 ? ~0 : ~((1 << max_attribute_index) - 1);
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700843
Eric Anholt16b68b12010-06-30 11:05:43 -0700844 gl_shader *const sh = prog->_LinkedShaders[0];
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700845 assert(sh->Type == GL_VERTEX_SHADER);
846
Ian Romanick69846702010-06-22 17:29:19 -0700847 /* Operate in a total of four passes.
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700848 *
849 * 1. Invalidate the location assignments for all vertex shader inputs.
850 *
851 * 2. Assign locations for inputs that have user-defined (via
852 * glBindVertexAttribLocation) locatoins.
853 *
Ian Romanick69846702010-06-22 17:29:19 -0700854 * 3. Sort the attributes without assigned locations by number of slots
855 * required in decreasing order. Fragmentation caused by attribute
856 * locations assigned by the application may prevent large attributes
857 * from having enough contiguous space.
858 *
859 * 4. Assign locations to any inputs without assigned locations.
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700860 */
861
862 invalidate_variable_locations(sh, ir_var_in, VERT_ATTRIB_GENERIC0);
863
Ian Romanick553dcdc2010-06-23 12:14:02 -0700864 if (prog->Attributes != NULL) {
865 for (unsigned i = 0; i < prog->Attributes->NumParameters; i++) {
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700866 ir_variable *const var =
Ian Romanick553dcdc2010-06-23 12:14:02 -0700867 sh->symbols->get_variable(prog->Attributes->Parameters[i].Name);
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700868
Ian Romanick69846702010-06-22 17:29:19 -0700869 /* Note: attributes that occupy multiple slots, such as arrays or
870 * matrices, may appear in the attrib array multiple times.
871 */
872 if ((var == NULL) || (var->location != -1))
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700873 continue;
874
Ian Romanick69846702010-06-22 17:29:19 -0700875 /* From page 61 of the OpenGL 4.0 spec:
876 *
877 * "LinkProgram will fail if the attribute bindings assigned by
878 * BindAttribLocation do not leave not enough space to assign a
879 * location for an active matrix attribute or an active attribute
880 * array, both of which require multiple contiguous generic
881 * attributes."
882 *
883 * Previous versions of the spec contain similar language but omit the
884 * bit about attribute arrays.
885 *
886 * Page 61 of the OpenGL 4.0 spec also says:
887 *
888 * "It is possible for an application to bind more than one
889 * attribute name to the same location. This is referred to as
890 * aliasing. This will only work if only one of the aliased
891 * attributes is active in the executable program, or if no path
892 * through the shader consumes more than one attribute of a set
893 * of attributes aliased to the same location. A link error can
894 * occur if the linker determines that every path through the
895 * shader consumes multiple aliased attributes, but
896 * implementations are not required to generate an error in this
897 * case."
898 *
899 * These two paragraphs are either somewhat contradictory, or I don't
900 * fully understand one or both of them.
901 */
902 /* FINISHME: The code as currently written does not support attribute
903 * FINISHME: location aliasing (see comment above).
904 */
Ian Romanick553dcdc2010-06-23 12:14:02 -0700905 const int attr = prog->Attributes->Parameters[i].StateIndexes[0];
Ian Romanick69846702010-06-22 17:29:19 -0700906 const unsigned slots = count_attribute_slots(var->type);
907
908 /* Mask representing the contiguous slots that will be used by this
909 * attribute.
910 */
911 const unsigned use_mask = (1 << slots) - 1;
912
913 /* Generate a link error if the set of bits requested for this
914 * attribute overlaps any previously allocated bits.
915 */
916 if ((~(use_mask << attr) & used_locations) != used_locations) {
Ian Romanick553dcdc2010-06-23 12:14:02 -0700917 linker_error_printf(prog,
918 "insufficient contiguous attribute locations "
919 "available for vertex shader input `%s'",
920 var->name);
Ian Romanick69846702010-06-22 17:29:19 -0700921 return false;
922 }
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700923
924 var->location = VERT_ATTRIB_GENERIC0 + attr;
Ian Romanick69846702010-06-22 17:29:19 -0700925 used_locations |= (use_mask << attr);
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700926 }
927 }
928
Ian Romanick69846702010-06-22 17:29:19 -0700929 /* Temporary storage for the set of attributes that need locations assigned.
930 */
931 struct temp_attr {
932 unsigned slots;
933 ir_variable *var;
934
935 /* Used below in the call to qsort. */
936 static int compare(const void *a, const void *b)
937 {
938 const temp_attr *const l = (const temp_attr *) a;
939 const temp_attr *const r = (const temp_attr *) b;
940
941 /* Reversed because we want a descending order sort below. */
942 return r->slots - l->slots;
943 }
944 } to_assign[16];
945
946 unsigned num_attr = 0;
947
Eric Anholt16b68b12010-06-30 11:05:43 -0700948 foreach_list(node, sh->ir) {
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700949 ir_variable *const var = ((ir_instruction *) node)->as_variable();
950
951 if ((var == NULL) || (var->mode != ir_var_in))
952 continue;
953
954 /* The location was explicitly assigned, nothing to do here.
955 */
956 if (var->location != -1)
957 continue;
958
Ian Romanick69846702010-06-22 17:29:19 -0700959 to_assign[num_attr].slots = count_attribute_slots(var->type);
960 to_assign[num_attr].var = var;
961 num_attr++;
Ian Romanick0ad22cd2010-06-21 17:18:31 -0700962 }
Ian Romanick69846702010-06-22 17:29:19 -0700963
964 /* If all of the attributes were assigned locations by the application (or
965 * are built-in attributes with fixed locations), return early. This should
966 * be the common case.
967 */
968 if (num_attr == 0)
969 return true;
970
971 qsort(to_assign, num_attr, sizeof(to_assign[0]), temp_attr::compare);
972
Ian Romanick982e3792010-06-29 18:58:20 -0700973 /* VERT_ATTRIB_GENERIC0 is a psdueo-alias for VERT_ATTRIB_POS. It can only
974 * be explicitly assigned by via glBindAttribLocation. Mark it as reserved
975 * to prevent it from being automatically allocated below.
976 */
Ian Romanick35c89202010-07-07 16:28:39 -0700977 used_locations |= (1 << 0);
Ian Romanick982e3792010-06-29 18:58:20 -0700978
Ian Romanick69846702010-06-22 17:29:19 -0700979 for (unsigned i = 0; i < num_attr; i++) {
980 /* Mask representing the contiguous slots that will be used by this
981 * attribute.
982 */
983 const unsigned use_mask = (1 << to_assign[i].slots) - 1;
984
985 int location = find_available_slots(used_locations, to_assign[i].slots);
986
987 if (location < 0) {
Ian Romanick553dcdc2010-06-23 12:14:02 -0700988 linker_error_printf(prog,
989 "insufficient contiguous attribute locations "
990 "available for vertex shader input `%s'",
991 to_assign[i].var->name);
Ian Romanick69846702010-06-22 17:29:19 -0700992 return false;
993 }
994
995 to_assign[i].var->location = VERT_ATTRIB_GENERIC0 + location;
996 used_locations |= (use_mask << location);
997 }
998
999 return true;
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001000}
1001
1002
1003void
Eric Anholt16b68b12010-06-30 11:05:43 -07001004assign_varying_locations(gl_shader *producer, gl_shader *consumer)
Ian Romanick0e59b262010-06-23 11:23:01 -07001005{
1006 /* FINISHME: Set dynamically when geometry shader support is added. */
1007 unsigned output_index = VERT_RESULT_VAR0;
1008 unsigned input_index = FRAG_ATTRIB_VAR0;
1009
1010 /* Operate in a total of three passes.
1011 *
1012 * 1. Assign locations for any matching inputs and outputs.
1013 *
1014 * 2. Mark output variables in the producer that do not have locations as
1015 * not being outputs. This lets the optimizer eliminate them.
1016 *
1017 * 3. Mark input variables in the consumer that do not have locations as
1018 * not being inputs. This lets the optimizer eliminate them.
1019 */
1020
1021 invalidate_variable_locations(producer, ir_var_out, VERT_RESULT_VAR0);
1022 invalidate_variable_locations(consumer, ir_var_in, FRAG_ATTRIB_VAR0);
1023
Eric Anholt16b68b12010-06-30 11:05:43 -07001024 foreach_list(node, producer->ir) {
Ian Romanick0e59b262010-06-23 11:23:01 -07001025 ir_variable *const output_var = ((ir_instruction *) node)->as_variable();
1026
1027 if ((output_var == NULL) || (output_var->mode != ir_var_out)
1028 || (output_var->location != -1))
1029 continue;
1030
1031 ir_variable *const input_var =
1032 consumer->symbols->get_variable(output_var->name);
1033
1034 if ((input_var == NULL) || (input_var->mode != ir_var_in))
1035 continue;
1036
1037 assert(input_var->location == -1);
1038
1039 /* FINISHME: Location assignment will need some changes when arrays,
1040 * FINISHME: matrices, and structures are allowed as shader inputs /
1041 * FINISHME: outputs.
1042 */
1043 output_var->location = output_index;
1044 input_var->location = input_index;
1045
1046 output_index++;
1047 input_index++;
1048 }
1049
Eric Anholt16b68b12010-06-30 11:05:43 -07001050 foreach_list(node, producer->ir) {
Ian Romanick0e59b262010-06-23 11:23:01 -07001051 ir_variable *const var = ((ir_instruction *) node)->as_variable();
1052
1053 if ((var == NULL) || (var->mode != ir_var_out))
1054 continue;
1055
1056 /* An 'out' variable is only really a shader output if its value is read
1057 * by the following stage.
1058 */
Eric Anholtc10a6852010-07-13 11:07:16 -07001059 if (var->location == -1) {
1060 var->shader_out = false;
1061 var->mode = ir_var_auto;
1062 }
Ian Romanick0e59b262010-06-23 11:23:01 -07001063 }
1064
Eric Anholt16b68b12010-06-30 11:05:43 -07001065 foreach_list(node, consumer->ir) {
Ian Romanick0e59b262010-06-23 11:23:01 -07001066 ir_variable *const var = ((ir_instruction *) node)->as_variable();
1067
1068 if ((var == NULL) || (var->mode != ir_var_in))
1069 continue;
1070
1071 /* An 'in' variable is only really a shader input if its value is written
1072 * by the previous stage.
1073 */
1074 var->shader_in = (var->location != -1);
1075 }
1076}
1077
1078
1079void
Eric Anholt849e1812010-06-30 11:49:17 -07001080link_shaders(struct gl_shader_program *prog)
Ian Romanick832dfa52010-06-17 15:04:20 -07001081{
1082 prog->LinkStatus = false;
1083 prog->Validated = false;
1084 prog->_Used = false;
1085
Ian Romanickf36460e2010-06-23 12:07:22 -07001086 if (prog->InfoLog != NULL)
1087 talloc_free(prog->InfoLog);
1088
1089 prog->InfoLog = talloc_strdup(NULL, "");
1090
Ian Romanick832dfa52010-06-17 15:04:20 -07001091 /* Separate the shaders into groups based on their type.
1092 */
Eric Anholt16b68b12010-06-30 11:05:43 -07001093 struct gl_shader **vert_shader_list;
Ian Romanick832dfa52010-06-17 15:04:20 -07001094 unsigned num_vert_shaders = 0;
Eric Anholt16b68b12010-06-30 11:05:43 -07001095 struct gl_shader **frag_shader_list;
Ian Romanick832dfa52010-06-17 15:04:20 -07001096 unsigned num_frag_shaders = 0;
1097
Eric Anholt16b68b12010-06-30 11:05:43 -07001098 vert_shader_list = (struct gl_shader **)
1099 calloc(2 * prog->NumShaders, sizeof(struct gl_shader *));
Ian Romanick832dfa52010-06-17 15:04:20 -07001100 frag_shader_list = &vert_shader_list[prog->NumShaders];
1101
1102 for (unsigned i = 0; i < prog->NumShaders; i++) {
1103 switch (prog->Shaders[i]->Type) {
1104 case GL_VERTEX_SHADER:
1105 vert_shader_list[num_vert_shaders] = prog->Shaders[i];
1106 num_vert_shaders++;
1107 break;
1108 case GL_FRAGMENT_SHADER:
1109 frag_shader_list[num_frag_shaders] = prog->Shaders[i];
1110 num_frag_shaders++;
1111 break;
1112 case GL_GEOMETRY_SHADER:
1113 /* FINISHME: Support geometry shaders. */
1114 assert(prog->Shaders[i]->Type != GL_GEOMETRY_SHADER);
1115 break;
1116 }
1117 }
1118
1119 /* FINISHME: Implement intra-stage linking. */
Ian Romanickabee16e2010-06-21 16:16:05 -07001120 prog->_NumLinkedShaders = 0;
Ian Romanickcc22c5a2010-06-18 17:13:42 -07001121 if (num_vert_shaders > 0) {
Ian Romanick3fb87872010-07-09 14:09:34 -07001122 gl_shader *const sh =
1123 link_intrastage_shaders(prog, vert_shader_list, num_vert_shaders);
1124
1125 if (sh == NULL)
1126 goto done;
1127
1128 if (!validate_vertex_shader_executable(prog, sh))
1129 goto done;
1130
1131 prog->_LinkedShaders[prog->_NumLinkedShaders] = sh;
Ian Romanickabee16e2010-06-21 16:16:05 -07001132 prog->_NumLinkedShaders++;
Ian Romanickcc22c5a2010-06-18 17:13:42 -07001133 }
1134
1135 if (num_frag_shaders > 0) {
Ian Romanick3fb87872010-07-09 14:09:34 -07001136 gl_shader *const sh =
1137 link_intrastage_shaders(prog, frag_shader_list, num_frag_shaders);
1138
1139 if (sh == NULL)
1140 goto done;
1141
1142 if (!validate_fragment_shader_executable(prog, sh))
1143 goto done;
1144
1145 prog->_LinkedShaders[prog->_NumLinkedShaders] = sh;
Ian Romanickabee16e2010-06-21 16:16:05 -07001146 prog->_NumLinkedShaders++;
Ian Romanickcc22c5a2010-06-18 17:13:42 -07001147 }
1148
Ian Romanick3ed850e2010-06-23 12:18:21 -07001149 /* Here begins the inter-stage linking phase. Some initial validation is
1150 * performed, then locations are assigned for uniforms, attributes, and
1151 * varyings.
1152 */
Ian Romanicked1fe3d2010-06-23 12:09:14 -07001153 if (cross_validate_uniforms(prog)) {
Ian Romanick37101922010-06-18 19:02:10 -07001154 /* Validate the inputs of each stage with the output of the preceeding
1155 * stage.
1156 */
Ian Romanickabee16e2010-06-21 16:16:05 -07001157 for (unsigned i = 1; i < prog->_NumLinkedShaders; i++) {
Ian Romanickf36460e2010-06-23 12:07:22 -07001158 if (!cross_validate_outputs_to_inputs(prog,
1159 prog->_LinkedShaders[i - 1],
Ian Romanickabee16e2010-06-21 16:16:05 -07001160 prog->_LinkedShaders[i]))
Ian Romanick37101922010-06-18 19:02:10 -07001161 goto done;
1162 }
1163
Ian Romanickcc22c5a2010-06-18 17:13:42 -07001164 prog->LinkStatus = true;
Ian Romanick37101922010-06-18 19:02:10 -07001165 }
Ian Romanick832dfa52010-06-17 15:04:20 -07001166
Ian Romanick13e10e42010-06-21 12:03:24 -07001167 /* FINISHME: Perform whole-program optimization here. */
1168
Ian Romanickabee16e2010-06-21 16:16:05 -07001169 assign_uniform_locations(prog);
Ian Romanick13e10e42010-06-21 12:03:24 -07001170
Ian Romanick0ad22cd2010-06-21 17:18:31 -07001171 if (prog->_LinkedShaders[0]->Type == GL_VERTEX_SHADER)
Ian Romanick9342d262010-06-22 17:41:37 -07001172 /* FINISHME: The value of the max_attribute_index parameter is
1173 * FINISHME: implementation dependent based on the value of
1174 * FINISHME: GL_MAX_VERTEX_ATTRIBS. GL_MAX_VERTEX_ATTRIBS must be
1175 * FINISHME: at least 16, so hardcode 16 for now.
1176 */
Ian Romanick553dcdc2010-06-23 12:14:02 -07001177 if (!assign_attribute_locations(prog, 16))
Ian Romanick69846702010-06-22 17:29:19 -07001178 goto done;
Ian Romanick13e10e42010-06-21 12:03:24 -07001179
Ian Romanick0e59b262010-06-23 11:23:01 -07001180 for (unsigned i = 1; i < prog->_NumLinkedShaders; i++)
1181 assign_varying_locations(prog->_LinkedShaders[i - 1],
1182 prog->_LinkedShaders[i]);
Ian Romanick13e10e42010-06-21 12:03:24 -07001183
1184 /* FINISHME: Assign fragment shader output locations. */
1185
Ian Romanick832dfa52010-06-17 15:04:20 -07001186done:
1187 free(vert_shader_list);
1188}