Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 1 | /* |
| 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 Romanick | f36460e | 2010-06-23 12:07:22 -0700 | [diff] [blame] | 66 | |
Chia-I Wu | bfd7c9a | 2010-08-23 17:51:42 +0800 | [diff] [blame] | 67 | #include "main/core.h" |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 68 | #include "glsl_symbol_table.h" |
Eric Anholt | faf3dba | 2013-06-12 16:57:11 -0700 | [diff] [blame] | 69 | #include "glsl_parser_extras.h" |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 70 | #include "ir.h" |
| 71 | #include "program.h" |
Aras Pranckevicius | 3174715 | 2010-07-29 12:40:49 +0300 | [diff] [blame] | 72 | #include "program/hash_table.h" |
Ian Romanick | 8fe8a81 | 2010-07-13 17:36:13 -0700 | [diff] [blame] | 73 | #include "linker.h" |
Paul Berry | 4b11b57 | 2012-12-17 14:20:35 -0800 | [diff] [blame] | 74 | #include "link_varyings.h" |
Ian Romanick | a7ba9a7 | 2010-07-20 13:36:32 -0700 | [diff] [blame] | 75 | #include "ir_optimization.h" |
Bryan Cain | 2548092 | 2013-02-15 09:46:50 -0600 | [diff] [blame] | 76 | #include "ir_rvalue_visitor.h" |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 77 | |
Ian Romanick | 3322fba | 2010-10-14 13:28:42 -0700 | [diff] [blame] | 78 | extern "C" { |
| 79 | #include "main/shaderobj.h" |
Eric Anholt | 6065a87 | 2013-06-12 18:12:40 -0700 | [diff] [blame] | 80 | #include "main/enums.h" |
Ian Romanick | 3322fba | 2010-10-14 13:28:42 -0700 | [diff] [blame] | 81 | } |
| 82 | |
Bryan Cain | 2548092 | 2013-02-15 09:46:50 -0600 | [diff] [blame] | 83 | void linker_error(gl_shader_program *, const char *, ...); |
| 84 | |
Eric Anholt | 10ef949 | 2013-09-20 11:03:44 -0700 | [diff] [blame] | 85 | namespace { |
| 86 | |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 87 | /** |
| 88 | * Visitor that determines whether or not a variable is ever written. |
| 89 | */ |
| 90 | class find_assignment_visitor : public ir_hierarchical_visitor { |
| 91 | public: |
| 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 Anholt | 18a6023 | 2010-08-23 11:29:25 -0700 | [diff] [blame] | 110 | virtual ir_visitor_status visit_enter(ir_call *ir) |
| 111 | { |
Kenneth Graunke | 48d0faa | 2014-01-10 16:39:17 -0800 | [diff] [blame] | 112 | 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 Anholt | 18a6023 | 2010-08-23 11:29:25 -0700 | [diff] [blame] | 116 | |
Tapani Pälli | 33ee2c6 | 2013-12-12 13:51:01 +0200 | [diff] [blame] | 117 | if (sig_param->data.mode == ir_var_function_out || |
| 118 | sig_param->data.mode == ir_var_function_inout) { |
Eric Anholt | 18a6023 | 2010-08-23 11:29:25 -0700 | [diff] [blame] | 119 | 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 Anholt | 18a6023 | 2010-08-23 11:29:25 -0700 | [diff] [blame] | 125 | } |
| 126 | |
Kenneth Graunke | d884f60 | 2012-03-20 15:56:37 -0700 | [diff] [blame] | 127 | 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 Anholt | 18a6023 | 2010-08-23 11:29:25 -0700 | [diff] [blame] | 136 | return visit_continue_with_parent; |
| 137 | } |
| 138 | |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 139 | bool variable_found() |
| 140 | { |
| 141 | return found; |
| 142 | } |
| 143 | |
| 144 | private: |
| 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 Romanick | c93b8f1 | 2010-06-17 15:20:22 -0700 | [diff] [blame] | 149 | |
Ian Romanick | c33e78f | 2010-08-13 12:30:41 -0700 | [diff] [blame] | 150 | /** |
| 151 | * Visitor that determines whether or not a variable is ever read. |
| 152 | */ |
| 153 | class find_deref_visitor : public ir_hierarchical_visitor { |
| 154 | public: |
| 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 | |
| 176 | private: |
| 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 Berry | 7cfefe6 | 2013-07-30 21:13:48 -0700 | [diff] [blame] | 182 | class geom_array_resize_visitor : public ir_hierarchical_visitor { |
| 183 | public: |
| 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älli | 33ee2c6 | 2013-12-12 13:51:01 +0200 | [diff] [blame] | 200 | if (!var->type->is_array() || var->data.mode != ir_var_shader_in) |
Paul Berry | 7cfefe6 | 2013-07-30 21:13:48 -0700 | [diff] [blame] | 201 | 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älli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 219 | if (var->data.max_array_access >= this->num_vertices) { |
Paul Berry | 7cfefe6 | 2013-07-30 21:13:48 -0700 | [diff] [blame] | 220 | linker_error(this->prog, "geometry shader accesses element %i of " |
| 221 | "%s, but only %i input vertices\n", |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 222 | var->data.max_array_access, var->name, this->num_vertices); |
Paul Berry | 7cfefe6 | 2013-07-30 21:13:48 -0700 | [diff] [blame] | 223 | return visit_continue; |
| 224 | } |
| 225 | |
| 226 | var->type = glsl_type::get_array_instance(var->type->element_type(), |
| 227 | this->num_vertices); |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 228 | var->data.max_array_access = this->num_vertices - 1; |
Paul Berry | 7cfefe6 | 2013-07-30 21:13:48 -0700 | [diff] [blame] | 229 | |
| 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 | |
| 252 | |
Paul Berry | 1a33e02 | 2013-08-18 20:59:37 -0700 | [diff] [blame] | 253 | /** |
| 254 | * Visitor that determines whether or not a shader uses ir_end_primitive. |
| 255 | */ |
| 256 | class find_end_primitive_visitor : public ir_hierarchical_visitor { |
| 257 | public: |
| 258 | find_end_primitive_visitor() |
| 259 | : found(false) |
| 260 | { |
| 261 | /* empty */ |
| 262 | } |
| 263 | |
| 264 | virtual ir_visitor_status visit(ir_end_primitive *) |
| 265 | { |
| 266 | found = true; |
| 267 | return visit_stop; |
| 268 | } |
| 269 | |
| 270 | bool end_primitive_found() |
| 271 | { |
| 272 | return found; |
| 273 | } |
| 274 | |
| 275 | private: |
| 276 | bool found; |
| 277 | }; |
| 278 | |
Eric Anholt | 10ef949 | 2013-09-20 11:03:44 -0700 | [diff] [blame] | 279 | } /* anonymous namespace */ |
Paul Berry | 1a33e02 | 2013-08-18 20:59:37 -0700 | [diff] [blame] | 280 | |
Ian Romanick | 0ad22cd | 2010-06-21 17:18:31 -0700 | [diff] [blame] | 281 | void |
Ian Romanick | 586e741 | 2011-07-28 14:04:09 -0700 | [diff] [blame] | 282 | linker_error(gl_shader_program *prog, const char *fmt, ...) |
Ian Romanick | f36460e | 2010-06-23 12:07:22 -0700 | [diff] [blame] | 283 | { |
| 284 | va_list ap; |
| 285 | |
Kenneth Graunke | d3073f5 | 2011-01-21 14:32:31 -0800 | [diff] [blame] | 286 | ralloc_strcat(&prog->InfoLog, "error: "); |
Ian Romanick | f36460e | 2010-06-23 12:07:22 -0700 | [diff] [blame] | 287 | va_start(ap, fmt); |
Kenneth Graunke | d3073f5 | 2011-01-21 14:32:31 -0800 | [diff] [blame] | 288 | ralloc_vasprintf_append(&prog->InfoLog, fmt, ap); |
Ian Romanick | f36460e | 2010-06-23 12:07:22 -0700 | [diff] [blame] | 289 | va_end(ap); |
Ian Romanick | 586e741 | 2011-07-28 14:04:09 -0700 | [diff] [blame] | 290 | |
| 291 | prog->LinkStatus = false; |
Ian Romanick | f36460e | 2010-06-23 12:07:22 -0700 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | |
| 295 | void |
Ian Romanick | 379a32f | 2011-07-28 14:09:06 -0700 | [diff] [blame] | 296 | linker_warning(gl_shader_program *prog, const char *fmt, ...) |
| 297 | { |
| 298 | va_list ap; |
| 299 | |
| 300 | ralloc_strcat(&prog->InfoLog, "error: "); |
| 301 | va_start(ap, fmt); |
| 302 | ralloc_vasprintf_append(&prog->InfoLog, fmt, ap); |
| 303 | va_end(ap); |
| 304 | |
| 305 | } |
| 306 | |
| 307 | |
Paul Berry | b92900d | 2013-01-28 14:21:59 -0800 | [diff] [blame] | 308 | /** |
| 309 | * Given a string identifying a program resource, break it into a base name |
| 310 | * and an optional array index in square brackets. |
| 311 | * |
| 312 | * If an array index is present, \c out_base_name_end is set to point to the |
| 313 | * "[" that precedes the array index, and the array index itself is returned |
| 314 | * as a long. |
| 315 | * |
| 316 | * If no array index is present (or if the array index is negative or |
| 317 | * mal-formed), \c out_base_name_end, is set to point to the null terminator |
| 318 | * at the end of the input string, and -1 is returned. |
| 319 | * |
| 320 | * Only the final array index is parsed; if the string contains other array |
| 321 | * indices (or structure field accesses), they are left in the base name. |
| 322 | * |
| 323 | * No attempt is made to check that the base name is properly formed; |
| 324 | * typically the caller will look up the base name in a hash table, so |
| 325 | * ill-formed base names simply turn into hash table lookup failures. |
| 326 | */ |
| 327 | long |
| 328 | parse_program_resource_name(const GLchar *name, |
| 329 | const GLchar **out_base_name_end) |
| 330 | { |
| 331 | /* Section 7.3.1 ("Program Interfaces") of the OpenGL 4.3 spec says: |
| 332 | * |
| 333 | * "When an integer array element or block instance number is part of |
| 334 | * the name string, it will be specified in decimal form without a "+" |
| 335 | * or "-" sign or any extra leading zeroes. Additionally, the name |
| 336 | * string will not include white space anywhere in the string." |
| 337 | */ |
| 338 | |
| 339 | const size_t len = strlen(name); |
| 340 | *out_base_name_end = name + len; |
| 341 | |
| 342 | if (len == 0 || name[len-1] != ']') |
| 343 | return -1; |
| 344 | |
| 345 | /* Walk backwards over the string looking for a non-digit character. This |
| 346 | * had better be the opening bracket for an array index. |
| 347 | * |
| 348 | * Initially, i specifies the location of the ']'. Since the string may |
| 349 | * contain only the ']' charcater, walk backwards very carefully. |
| 350 | */ |
| 351 | unsigned i; |
| 352 | for (i = len - 1; (i > 0) && isdigit(name[i-1]); --i) |
| 353 | /* empty */ ; |
| 354 | |
| 355 | if ((i == 0) || name[i-1] != '[') |
| 356 | return -1; |
| 357 | |
| 358 | long array_index = strtol(&name[i], NULL, 10); |
| 359 | if (array_index < 0) |
| 360 | return -1; |
| 361 | |
| 362 | *out_base_name_end = name + (i - 1); |
| 363 | return array_index; |
| 364 | } |
| 365 | |
| 366 | |
Ian Romanick | 379a32f | 2011-07-28 14:09:06 -0700 | [diff] [blame] | 367 | void |
Ian Romanick | 63974c0 | 2013-10-04 10:46:29 -0700 | [diff] [blame] | 368 | link_invalidate_variable_locations(exec_list *ir) |
Ian Romanick | 0ad22cd | 2010-06-21 17:18:31 -0700 | [diff] [blame] | 369 | { |
Ian Romanick | cf8b14c | 2013-10-22 15:07:00 -0700 | [diff] [blame] | 370 | foreach_list(node, ir) { |
Ian Romanick | 0ad22cd | 2010-06-21 17:18:31 -0700 | [diff] [blame] | 371 | ir_variable *const var = ((ir_instruction *) node)->as_variable(); |
| 372 | |
Paul Berry | 50895d4 | 2012-12-05 07:17:07 -0800 | [diff] [blame] | 373 | if (var == NULL) |
| 374 | continue; |
| 375 | |
Ian Romanick | 63974c0 | 2013-10-04 10:46:29 -0700 | [diff] [blame] | 376 | /* Only assign locations for variables that lack an explicit location. |
| 377 | * Explicit locations are set for all built-in variables, generic vertex |
| 378 | * shader inputs (via layout(location=...)), and generic fragment shader |
| 379 | * outputs (also via layout(location=...)). |
| 380 | */ |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 381 | if (!var->data.explicit_location) { |
| 382 | var->data.location = -1; |
| 383 | var->data.location_frac = 0; |
Paul Berry | 50895d4 | 2012-12-05 07:17:07 -0800 | [diff] [blame] | 384 | } |
Ian Romanick | 0ad22cd | 2010-06-21 17:18:31 -0700 | [diff] [blame] | 385 | |
Ian Romanick | 63974c0 | 2013-10-04 10:46:29 -0700 | [diff] [blame] | 386 | /* ir_variable::is_unmatched_generic_inout is used by the linker while |
| 387 | * connecting outputs from one stage to inputs of the next stage. |
| 388 | * |
| 389 | * There are two implicit assumptions here. First, we assume that any |
| 390 | * built-in variable (i.e., non-generic in or out) will have |
| 391 | * explicit_location set. Second, we assume that any generic in or out |
| 392 | * will not have explicit_location set. |
| 393 | * |
| 394 | * This second assumption will only be valid until |
| 395 | * GL_ARB_separate_shader_objects is supported. When that extension is |
| 396 | * implemented, this function will need some modifications. |
Ian Romanick | 0ad22cd | 2010-06-21 17:18:31 -0700 | [diff] [blame] | 397 | */ |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 398 | if (!var->data.explicit_location) { |
| 399 | var->data.is_unmatched_generic_inout = 1; |
Paul Berry | 3e81c66 | 2012-12-05 10:47:55 -0800 | [diff] [blame] | 400 | } else { |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 401 | var->data.is_unmatched_generic_inout = 0; |
Paul Berry | 3e81c66 | 2012-12-05 10:47:55 -0800 | [diff] [blame] | 402 | } |
Ian Romanick | 0ad22cd | 2010-06-21 17:18:31 -0700 | [diff] [blame] | 403 | } |
| 404 | } |
| 405 | |
| 406 | |
Ian Romanick | c93b8f1 | 2010-06-17 15:20:22 -0700 | [diff] [blame] | 407 | /** |
Paul Berry | 44e07de | 2013-06-11 14:11:05 -0700 | [diff] [blame] | 408 | * Set UsesClipDistance and ClipDistanceArraySize based on the given shader. |
| 409 | * |
| 410 | * Also check for errors based on incorrect usage of gl_ClipVertex and |
| 411 | * gl_ClipDistance. |
| 412 | * |
| 413 | * Return false if an error was reported. |
| 414 | */ |
| 415 | static void |
Paul Berry | b30e25f | 2013-12-17 09:49:43 -0800 | [diff] [blame] | 416 | analyze_clip_usage(struct gl_shader_program *prog, |
Paul Berry | 44e07de | 2013-06-11 14:11:05 -0700 | [diff] [blame] | 417 | struct gl_shader *shader, GLboolean *UsesClipDistance, |
| 418 | GLuint *ClipDistanceArraySize) |
| 419 | { |
| 420 | *ClipDistanceArraySize = 0; |
| 421 | |
| 422 | if (!prog->IsES && prog->Version >= 130) { |
| 423 | /* From section 7.1 (Vertex Shader Special Variables) of the |
| 424 | * GLSL 1.30 spec: |
| 425 | * |
| 426 | * "It is an error for a shader to statically write both |
| 427 | * gl_ClipVertex and gl_ClipDistance." |
| 428 | * |
| 429 | * This does not apply to GLSL ES shaders, since GLSL ES defines neither |
| 430 | * gl_ClipVertex nor gl_ClipDistance. |
| 431 | */ |
| 432 | find_assignment_visitor clip_vertex("gl_ClipVertex"); |
| 433 | find_assignment_visitor clip_distance("gl_ClipDistance"); |
| 434 | |
| 435 | clip_vertex.run(shader->ir); |
| 436 | clip_distance.run(shader->ir); |
| 437 | if (clip_vertex.variable_found() && clip_distance.variable_found()) { |
| 438 | linker_error(prog, "%s shader writes to both `gl_ClipVertex' " |
Paul Berry | b30e25f | 2013-12-17 09:49:43 -0800 | [diff] [blame] | 439 | "and `gl_ClipDistance'\n", |
Paul Berry | e3b86f0 | 2014-01-07 10:58:56 -0800 | [diff] [blame] | 440 | _mesa_shader_stage_to_string(shader->Stage)); |
Paul Berry | 44e07de | 2013-06-11 14:11:05 -0700 | [diff] [blame] | 441 | return; |
| 442 | } |
| 443 | *UsesClipDistance = clip_distance.variable_found(); |
| 444 | ir_variable *clip_distance_var = |
| 445 | shader->symbols->get_variable("gl_ClipDistance"); |
| 446 | if (clip_distance_var) |
| 447 | *ClipDistanceArraySize = clip_distance_var->type->length; |
| 448 | } else { |
| 449 | *UsesClipDistance = false; |
| 450 | } |
| 451 | } |
| 452 | |
| 453 | |
| 454 | /** |
Paul Berry | 1ad54ae | 2011-09-17 09:42:02 -0700 | [diff] [blame] | 455 | * Verify that a vertex shader executable meets all semantic requirements. |
| 456 | * |
Paul Berry | 642e5b41 | 2012-01-04 13:57:52 -0800 | [diff] [blame] | 457 | * Also sets prog->Vert.UsesClipDistance and prog->Vert.ClipDistanceArraySize |
| 458 | * as a side effect. |
Ian Romanick | c93b8f1 | 2010-06-17 15:20:22 -0700 | [diff] [blame] | 459 | * |
| 460 | * \param shader Vertex shader executable to be verified |
| 461 | */ |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 462 | void |
Eric Anholt | 849e181 | 2010-06-30 11:49:17 -0700 | [diff] [blame] | 463 | validate_vertex_shader_executable(struct gl_shader_program *prog, |
Eric Anholt | 16b68b1 | 2010-06-30 11:05:43 -0700 | [diff] [blame] | 464 | struct gl_shader *shader) |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 465 | { |
| 466 | if (shader == NULL) |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 467 | return; |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 468 | |
Eric Anholt | f1c1c9e | 2012-03-19 22:43:27 -0700 | [diff] [blame] | 469 | /* From the GLSL 1.10 spec, page 48: |
| 470 | * |
| 471 | * "The variable gl_Position is available only in the vertex |
| 472 | * language and is intended for writing the homogeneous vertex |
| 473 | * position. All executions of a well-formed vertex shader |
| 474 | * executable must write a value into this variable. [...] The |
| 475 | * variable gl_Position is available only in the vertex |
| 476 | * language and is intended for writing the homogeneous vertex |
| 477 | * position. All executions of a well-formed vertex shader |
| 478 | * executable must write a value into this variable." |
| 479 | * |
| 480 | * while in GLSL 1.40 this text is changed to: |
| 481 | * |
| 482 | * "The variable gl_Position is available only in the vertex |
| 483 | * language and is intended for writing the homogeneous vertex |
| 484 | * position. It can be written at any time during shader |
| 485 | * execution. It may also be read back by a vertex shader |
| 486 | * after being written. This value will be used by primitive |
| 487 | * assembly, clipping, culling, and other fixed functionality |
| 488 | * operations, if present, that operate on primitives after |
| 489 | * vertex processing has occurred. Its value is undefined if |
| 490 | * the vertex shader executable does not write gl_Position." |
Paul Berry | 15ba2a5 | 2012-08-02 17:51:02 -0700 | [diff] [blame] | 491 | * |
| 492 | * GLSL ES 3.00 is similar to GLSL 1.40--failing to write to gl_Position is |
| 493 | * not an error. |
Eric Anholt | f1c1c9e | 2012-03-19 22:43:27 -0700 | [diff] [blame] | 494 | */ |
Paul Berry | 15ba2a5 | 2012-08-02 17:51:02 -0700 | [diff] [blame] | 495 | if (prog->Version < (prog->IsES ? 300 : 140)) { |
Eric Anholt | f1c1c9e | 2012-03-19 22:43:27 -0700 | [diff] [blame] | 496 | find_assignment_visitor find("gl_Position"); |
| 497 | find.run(shader->ir); |
| 498 | if (!find.variable_found()) { |
| 499 | linker_error(prog, "vertex shader does not write to `gl_Position'\n"); |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 500 | return; |
Eric Anholt | f1c1c9e | 2012-03-19 22:43:27 -0700 | [diff] [blame] | 501 | } |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 502 | } |
| 503 | |
Paul Berry | b30e25f | 2013-12-17 09:49:43 -0800 | [diff] [blame] | 504 | analyze_clip_usage(prog, shader, &prog->Vert.UsesClipDistance, |
Paul Berry | 44e07de | 2013-06-11 14:11:05 -0700 | [diff] [blame] | 505 | &prog->Vert.ClipDistanceArraySize); |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 506 | } |
| 507 | |
| 508 | |
Ian Romanick | c93b8f1 | 2010-06-17 15:20:22 -0700 | [diff] [blame] | 509 | /** |
| 510 | * Verify that a fragment shader executable meets all semantic requirements |
| 511 | * |
| 512 | * \param shader Fragment shader executable to be verified |
| 513 | */ |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 514 | void |
Eric Anholt | 849e181 | 2010-06-30 11:49:17 -0700 | [diff] [blame] | 515 | validate_fragment_shader_executable(struct gl_shader_program *prog, |
Eric Anholt | 16b68b1 | 2010-06-30 11:05:43 -0700 | [diff] [blame] | 516 | struct gl_shader *shader) |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 517 | { |
| 518 | if (shader == NULL) |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 519 | return; |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 520 | |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 521 | find_assignment_visitor frag_color("gl_FragColor"); |
| 522 | find_assignment_visitor frag_data("gl_FragData"); |
| 523 | |
Eric Anholt | 16b68b1 | 2010-06-30 11:05:43 -0700 | [diff] [blame] | 524 | frag_color.run(shader->ir); |
| 525 | frag_data.run(shader->ir); |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 526 | |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 527 | if (frag_color.variable_found() && frag_data.variable_found()) { |
Ian Romanick | 586e741 | 2011-07-28 14:04:09 -0700 | [diff] [blame] | 528 | linker_error(prog, "fragment shader writes to both " |
| 529 | "`gl_FragColor' and `gl_FragData'\n"); |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 530 | } |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 531 | } |
| 532 | |
Bryan Cain | 2548092 | 2013-02-15 09:46:50 -0600 | [diff] [blame] | 533 | /** |
| 534 | * Verify that a geometry shader executable meets all semantic requirements |
| 535 | * |
Paul Berry | 44e07de | 2013-06-11 14:11:05 -0700 | [diff] [blame] | 536 | * Also sets prog->Geom.VerticesIn, prog->Geom.UsesClipDistance, and |
| 537 | * prog->Geom.ClipDistanceArraySize as a side effect. |
Bryan Cain | 2548092 | 2013-02-15 09:46:50 -0600 | [diff] [blame] | 538 | * |
| 539 | * \param shader Geometry shader executable to be verified |
| 540 | */ |
| 541 | void |
| 542 | validate_geometry_shader_executable(struct gl_shader_program *prog, |
| 543 | struct gl_shader *shader) |
| 544 | { |
| 545 | if (shader == NULL) |
| 546 | return; |
| 547 | |
| 548 | unsigned num_vertices = vertices_per_prim(prog->Geom.InputType); |
| 549 | prog->Geom.VerticesIn = num_vertices; |
Paul Berry | 44e07de | 2013-06-11 14:11:05 -0700 | [diff] [blame] | 550 | |
Paul Berry | b30e25f | 2013-12-17 09:49:43 -0800 | [diff] [blame] | 551 | analyze_clip_usage(prog, shader, &prog->Geom.UsesClipDistance, |
Paul Berry | 44e07de | 2013-06-11 14:11:05 -0700 | [diff] [blame] | 552 | &prog->Geom.ClipDistanceArraySize); |
Paul Berry | 1a33e02 | 2013-08-18 20:59:37 -0700 | [diff] [blame] | 553 | |
| 554 | find_end_primitive_visitor end_primitive; |
| 555 | end_primitive.run(shader->ir); |
| 556 | prog->Geom.UsesEndPrimitive = end_primitive.end_primitive_found(); |
Bryan Cain | 2548092 | 2013-02-15 09:46:50 -0600 | [diff] [blame] | 557 | } |
| 558 | |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 559 | |
Ian Romanick | cc22c5a | 2010-06-18 17:13:42 -0700 | [diff] [blame] | 560 | /** |
Ian Romanick | e2e5d0d | 2010-06-29 18:47:11 -0700 | [diff] [blame] | 561 | * Perform validation of global variables used across multiple shaders |
Ian Romanick | cc22c5a | 2010-06-18 17:13:42 -0700 | [diff] [blame] | 562 | */ |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 563 | void |
Ian Romanick | e2e5d0d | 2010-06-29 18:47:11 -0700 | [diff] [blame] | 564 | cross_validate_globals(struct gl_shader_program *prog, |
| 565 | struct gl_shader **shader_list, |
| 566 | unsigned num_shaders, |
| 567 | bool uniforms_only) |
Ian Romanick | cc22c5a | 2010-06-18 17:13:42 -0700 | [diff] [blame] | 568 | { |
| 569 | /* Examine all of the uniforms in all of the shaders and cross validate |
| 570 | * them. |
| 571 | */ |
Ian Romanick | e2e5d0d | 2010-06-29 18:47:11 -0700 | [diff] [blame] | 572 | glsl_symbol_table variables; |
| 573 | for (unsigned i = 0; i < num_shaders; i++) { |
Ian Romanick | 3322fba | 2010-10-14 13:28:42 -0700 | [diff] [blame] | 574 | if (shader_list[i] == NULL) |
| 575 | continue; |
| 576 | |
Ian Romanick | e2e5d0d | 2010-06-29 18:47:11 -0700 | [diff] [blame] | 577 | foreach_list(node, shader_list[i]->ir) { |
Ian Romanick | cc22c5a | 2010-06-18 17:13:42 -0700 | [diff] [blame] | 578 | ir_variable *const var = ((ir_instruction *) node)->as_variable(); |
| 579 | |
Ian Romanick | e2e5d0d | 2010-06-29 18:47:11 -0700 | [diff] [blame] | 580 | if (var == NULL) |
Ian Romanick | cc22c5a | 2010-06-18 17:13:42 -0700 | [diff] [blame] | 581 | continue; |
| 582 | |
Tapani Pälli | 33ee2c6 | 2013-12-12 13:51:01 +0200 | [diff] [blame] | 583 | if (uniforms_only && (var->data.mode != ir_var_uniform)) |
Ian Romanick | e2e5d0d | 2010-06-29 18:47:11 -0700 | [diff] [blame] | 584 | continue; |
| 585 | |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 586 | /* Don't cross validate temporaries that are at global scope. These |
| 587 | * will eventually get pulled into the shaders 'main'. |
| 588 | */ |
Tapani Pälli | 33ee2c6 | 2013-12-12 13:51:01 +0200 | [diff] [blame] | 589 | if (var->data.mode == ir_var_temporary) |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 590 | continue; |
| 591 | |
Ian Romanick | e2e5d0d | 2010-06-29 18:47:11 -0700 | [diff] [blame] | 592 | /* If a global with this name has already been seen, verify that the |
| 593 | * new instance has the same type. In addition, if the globals have |
Ian Romanick | cc22c5a | 2010-06-18 17:13:42 -0700 | [diff] [blame] | 594 | * initializers, the values of the initializers must be the same. |
| 595 | */ |
Ian Romanick | e2e5d0d | 2010-06-29 18:47:11 -0700 | [diff] [blame] | 596 | ir_variable *const existing = variables.get_variable(var->name); |
Ian Romanick | cc22c5a | 2010-06-18 17:13:42 -0700 | [diff] [blame] | 597 | if (existing != NULL) { |
| 598 | if (var->type != existing->type) { |
Ian Romanick | a2711d6 | 2010-08-29 22:07:49 -0700 | [diff] [blame] | 599 | /* Consider the types to be "the same" if both types are arrays |
| 600 | * of the same type and one of the arrays is implicitly sized. |
| 601 | * In addition, set the type of the linked variable to the |
| 602 | * explicitly sized array. |
| 603 | */ |
| 604 | if (var->type->is_array() |
| 605 | && existing->type->is_array() |
| 606 | && (var->type->fields.array == existing->type->fields.array) |
| 607 | && ((var->type->length == 0) |
| 608 | || (existing->type->length == 0))) { |
Ian Romanick | 0f4b2a0 | 2011-01-25 12:06:18 -0800 | [diff] [blame] | 609 | if (var->type->length != 0) { |
Ian Romanick | a2711d6 | 2010-08-29 22:07:49 -0700 | [diff] [blame] | 610 | existing->type = var->type; |
Ian Romanick | 6f53921 | 2010-12-07 18:30:33 -0800 | [diff] [blame] | 611 | } |
Grigori Goronzy | 955c93d | 2013-11-27 00:15:06 +0100 | [diff] [blame] | 612 | } else if (var->type->is_record() |
| 613 | && existing->type->is_record() |
| 614 | && existing->type->record_compare(var->type)) { |
| 615 | existing->type = var->type; |
Ian Romanick | a2711d6 | 2010-08-29 22:07:49 -0700 | [diff] [blame] | 616 | } else { |
Ian Romanick | 586e741 | 2011-07-28 14:04:09 -0700 | [diff] [blame] | 617 | linker_error(prog, "%s `%s' declared as type " |
| 618 | "`%s' and type `%s'\n", |
| 619 | mode_string(var), |
| 620 | var->name, var->type->name, |
| 621 | existing->type->name); |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 622 | return; |
Ian Romanick | a2711d6 | 2010-08-29 22:07:49 -0700 | [diff] [blame] | 623 | } |
Ian Romanick | cc22c5a | 2010-06-18 17:13:42 -0700 | [diff] [blame] | 624 | } |
| 625 | |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 626 | if (var->data.explicit_location) { |
| 627 | if (existing->data.explicit_location |
| 628 | && (var->data.location != existing->data.location)) { |
Ian Romanick | 586e741 | 2011-07-28 14:04:09 -0700 | [diff] [blame] | 629 | linker_error(prog, "explicit locations for %s " |
| 630 | "`%s' have differing values\n", |
| 631 | mode_string(var), var->name); |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 632 | return; |
Ian Romanick | 68a4fc9 | 2010-10-07 17:21:22 -0700 | [diff] [blame] | 633 | } |
| 634 | |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 635 | existing->data.location = var->data.location; |
| 636 | existing->data.explicit_location = true; |
Ian Romanick | 68a4fc9 | 2010-10-07 17:21:22 -0700 | [diff] [blame] | 637 | } |
| 638 | |
Kenneth Graunke | 9a9a830 | 2013-07-16 12:18:57 -0700 | [diff] [blame] | 639 | /* From the GLSL 4.20 specification: |
| 640 | * "A link error will result if two compilation units in a program |
| 641 | * specify different integer-constant bindings for the same |
| 642 | * opaque-uniform name. However, it is not an error to specify a |
| 643 | * binding on some but not all declarations for the same name" |
| 644 | */ |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 645 | if (var->data.explicit_binding) { |
| 646 | if (existing->data.explicit_binding && |
| 647 | var->data.binding != existing->data.binding) { |
Kenneth Graunke | 9a9a830 | 2013-07-16 12:18:57 -0700 | [diff] [blame] | 648 | linker_error(prog, "explicit bindings for %s " |
| 649 | "`%s' have differing values\n", |
| 650 | mode_string(var), var->name); |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 651 | return; |
Kenneth Graunke | 9a9a830 | 2013-07-16 12:18:57 -0700 | [diff] [blame] | 652 | } |
| 653 | |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 654 | existing->data.binding = var->data.binding; |
| 655 | existing->data.explicit_binding = true; |
Kenneth Graunke | 9a9a830 | 2013-07-16 12:18:57 -0700 | [diff] [blame] | 656 | } |
| 657 | |
Francisco Jerez | 5c11493 | 2013-09-11 12:14:46 -0700 | [diff] [blame] | 658 | if (var->type->contains_atomic() && |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 659 | var->data.atomic.offset != existing->data.atomic.offset) { |
Francisco Jerez | 5c11493 | 2013-09-11 12:14:46 -0700 | [diff] [blame] | 660 | linker_error(prog, "offset specifications for %s " |
| 661 | "`%s' have differing values\n", |
| 662 | mode_string(var), var->name); |
| 663 | return; |
| 664 | } |
| 665 | |
Ian Romanick | 46173f9 | 2011-10-31 13:07:06 -0700 | [diff] [blame] | 666 | /* Validate layout qualifiers for gl_FragDepth. |
| 667 | * |
| 668 | * From the AMD/ARB_conservative_depth specs: |
| 669 | * |
| 670 | * "If gl_FragDepth is redeclared in any fragment shader in a |
| 671 | * program, it must be redeclared in all fragment shaders in |
| 672 | * that program that have static assignments to |
| 673 | * gl_FragDepth. All redeclarations of gl_FragDepth in all |
| 674 | * fragment shaders in a single program must have the same set |
| 675 | * of qualifiers." |
| 676 | */ |
| 677 | if (strcmp(var->name, "gl_FragDepth") == 0) { |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 678 | bool layout_declared = var->data.depth_layout != ir_depth_layout_none; |
Ian Romanick | 46173f9 | 2011-10-31 13:07:06 -0700 | [diff] [blame] | 679 | bool layout_differs = |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 680 | var->data.depth_layout != existing->data.depth_layout; |
Ian Romanick | 46173f9 | 2011-10-31 13:07:06 -0700 | [diff] [blame] | 681 | |
| 682 | if (layout_declared && layout_differs) { |
| 683 | linker_error(prog, |
| 684 | "All redeclarations of gl_FragDepth in all " |
| 685 | "fragment shaders in a single program must have " |
| 686 | "the same set of qualifiers."); |
| 687 | } |
| 688 | |
Tapani Pälli | 33ee2c6 | 2013-12-12 13:51:01 +0200 | [diff] [blame] | 689 | if (var->data.used && layout_differs) { |
Ian Romanick | 46173f9 | 2011-10-31 13:07:06 -0700 | [diff] [blame] | 690 | linker_error(prog, |
| 691 | "If gl_FragDepth is redeclared with a layout " |
| 692 | "qualifier in any fragment shader, it must be " |
| 693 | "redeclared with the same layout qualifier in " |
| 694 | "all fragment shaders that have assignments to " |
| 695 | "gl_FragDepth"); |
| 696 | } |
| 697 | } |
Chad Versace | addae33 | 2011-01-27 01:40:31 -0800 | [diff] [blame] | 698 | |
Ian Romanick | f37b1ad | 2011-10-31 14:31:07 -0700 | [diff] [blame] | 699 | /* Page 35 (page 41 of the PDF) of the GLSL 4.20 spec says: |
| 700 | * |
| 701 | * "If a shared global has multiple initializers, the |
| 702 | * initializers must all be constant expressions, and they |
| 703 | * must all have the same value. Otherwise, a link error will |
| 704 | * result. (A shared global having only one initializer does |
| 705 | * not require that initializer to be a constant expression.)" |
| 706 | * |
| 707 | * Previous to 4.20 the GLSL spec simply said that initializers |
| 708 | * must have the same value. In this case of non-constant |
| 709 | * initializers, this was impossible to determine. As a result, |
| 710 | * no vendor actually implemented that behavior. The 4.20 |
| 711 | * behavior matches the implemented behavior of at least one other |
| 712 | * vendor, so we'll implement that for all GLSL versions. |
Ian Romanick | e2e5d0d | 2010-06-29 18:47:11 -0700 | [diff] [blame] | 713 | */ |
Ian Romanick | f37b1ad | 2011-10-31 14:31:07 -0700 | [diff] [blame] | 714 | if (var->constant_initializer != NULL) { |
| 715 | if (existing->constant_initializer != NULL) { |
| 716 | if (!var->constant_initializer->has_value(existing->constant_initializer)) { |
Ian Romanick | 586e741 | 2011-07-28 14:04:09 -0700 | [diff] [blame] | 717 | linker_error(prog, "initializers for %s " |
| 718 | "`%s' have differing values\n", |
| 719 | mode_string(var), var->name); |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 720 | return; |
Ian Romanick | cc22c5a | 2010-06-18 17:13:42 -0700 | [diff] [blame] | 721 | } |
Ian Romanick | f37b1ad | 2011-10-31 14:31:07 -0700 | [diff] [blame] | 722 | } else { |
Ian Romanick | cc22c5a | 2010-06-18 17:13:42 -0700 | [diff] [blame] | 723 | /* If the first-seen instance of a particular uniform did not |
| 724 | * have an initializer but a later instance does, copy the |
| 725 | * initializer to the version stored in the symbol table. |
| 726 | */ |
Ian Romanick | de415b7 | 2010-07-14 13:22:12 -0700 | [diff] [blame] | 727 | /* FINISHME: This is wrong. The constant_value field should |
| 728 | * FINISHME: not be modified! Imagine a case where a shader |
| 729 | * FINISHME: without an initializer is linked in two different |
| 730 | * FINISHME: programs with shaders that have differing |
| 731 | * FINISHME: initializers. Linking with the first will |
| 732 | * FINISHME: modify the shader, and linking with the second |
| 733 | * FINISHME: will fail. |
| 734 | */ |
Ian Romanick | f37b1ad | 2011-10-31 14:31:07 -0700 | [diff] [blame] | 735 | existing->constant_initializer = |
| 736 | var->constant_initializer->clone(ralloc_parent(existing), |
| 737 | NULL); |
| 738 | } |
| 739 | } |
| 740 | |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 741 | if (var->data.has_initializer) { |
| 742 | if (existing->data.has_initializer |
Ian Romanick | f37b1ad | 2011-10-31 14:31:07 -0700 | [diff] [blame] | 743 | && (var->constant_initializer == NULL |
| 744 | || existing->constant_initializer == NULL)) { |
| 745 | linker_error(prog, |
| 746 | "shared global variable `%s' has multiple " |
| 747 | "non-constant initializers.\n", |
| 748 | var->name); |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 749 | return; |
Ian Romanick | f37b1ad | 2011-10-31 14:31:07 -0700 | [diff] [blame] | 750 | } |
| 751 | |
| 752 | /* Some instance had an initializer, so keep track of that. In |
| 753 | * this location, all sorts of initializers (constant or |
| 754 | * otherwise) will propagate the existence to the variable |
| 755 | * stored in the symbol table. |
| 756 | */ |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 757 | existing->data.has_initializer = true; |
Ian Romanick | cc22c5a | 2010-06-18 17:13:42 -0700 | [diff] [blame] | 758 | } |
Chad Versace | 7528f14 | 2010-11-17 14:34:38 -0800 | [diff] [blame] | 759 | |
Tapani Pälli | c1d3080 | 2013-12-12 12:57:57 +0200 | [diff] [blame] | 760 | if (existing->data.invariant != var->data.invariant) { |
Ian Romanick | 586e741 | 2011-07-28 14:04:09 -0700 | [diff] [blame] | 761 | linker_error(prog, "declarations for %s `%s' have " |
| 762 | "mismatching invariant qualifiers\n", |
| 763 | mode_string(var), var->name); |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 764 | return; |
Chad Versace | 7528f14 | 2010-11-17 14:34:38 -0800 | [diff] [blame] | 765 | } |
Tapani Pälli | c1d3080 | 2013-12-12 12:57:57 +0200 | [diff] [blame] | 766 | if (existing->data.centroid != var->data.centroid) { |
Ian Romanick | 586e741 | 2011-07-28 14:04:09 -0700 | [diff] [blame] | 767 | linker_error(prog, "declarations for %s `%s' have " |
| 768 | "mismatching centroid qualifiers\n", |
| 769 | mode_string(var), var->name); |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 770 | return; |
Chad Versace | 61428dd | 2011-01-10 15:29:30 -0800 | [diff] [blame] | 771 | } |
Tapani Pälli | c1d3080 | 2013-12-12 12:57:57 +0200 | [diff] [blame] | 772 | if (existing->data.sample != var->data.sample) { |
Chris Forbes | 51c5fc8 | 2013-11-29 21:26:10 +1300 | [diff] [blame] | 773 | linker_error(prog, "declarations for %s `%s` have " |
| 774 | "mismatching sample qualifiers\n", |
| 775 | mode_string(var), var->name); |
| 776 | return; |
| 777 | } |
Ian Romanick | cc22c5a | 2010-06-18 17:13:42 -0700 | [diff] [blame] | 778 | } else |
Eric Anholt | 001eee5 | 2010-11-05 06:11:24 -0700 | [diff] [blame] | 779 | variables.add_variable(var); |
Ian Romanick | cc22c5a | 2010-06-18 17:13:42 -0700 | [diff] [blame] | 780 | } |
| 781 | } |
Ian Romanick | cc22c5a | 2010-06-18 17:13:42 -0700 | [diff] [blame] | 782 | } |
| 783 | |
| 784 | |
Ian Romanick | 3710192 | 2010-06-18 19:02:10 -0700 | [diff] [blame] | 785 | /** |
Ian Romanick | e2e5d0d | 2010-06-29 18:47:11 -0700 | [diff] [blame] | 786 | * Perform validation of uniforms used across multiple shader stages |
| 787 | */ |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 788 | void |
Ian Romanick | e2e5d0d | 2010-06-29 18:47:11 -0700 | [diff] [blame] | 789 | cross_validate_uniforms(struct gl_shader_program *prog) |
| 790 | { |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 791 | cross_validate_globals(prog, prog->_LinkedShaders, |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 792 | MESA_SHADER_STAGES, true); |
Ian Romanick | e2e5d0d | 2010-06-29 18:47:11 -0700 | [diff] [blame] | 793 | } |
| 794 | |
Eric Anholt | f609cf7 | 2012-04-27 13:52:56 -0700 | [diff] [blame] | 795 | /** |
| 796 | * Accumulates the array of prog->UniformBlocks and checks that all |
| 797 | * definitons of blocks agree on their contents. |
| 798 | */ |
| 799 | static bool |
| 800 | interstage_cross_validate_uniform_blocks(struct gl_shader_program *prog) |
| 801 | { |
| 802 | unsigned max_num_uniform_blocks = 0; |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 803 | for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) { |
Eric Anholt | f609cf7 | 2012-04-27 13:52:56 -0700 | [diff] [blame] | 804 | if (prog->_LinkedShaders[i]) |
| 805 | max_num_uniform_blocks += prog->_LinkedShaders[i]->NumUniformBlocks; |
| 806 | } |
| 807 | |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 808 | for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) { |
Eric Anholt | f609cf7 | 2012-04-27 13:52:56 -0700 | [diff] [blame] | 809 | struct gl_shader *sh = prog->_LinkedShaders[i]; |
| 810 | |
| 811 | prog->UniformBlockStageIndex[i] = ralloc_array(prog, int, |
| 812 | max_num_uniform_blocks); |
| 813 | for (unsigned int j = 0; j < max_num_uniform_blocks; j++) |
| 814 | prog->UniformBlockStageIndex[i][j] = -1; |
| 815 | |
| 816 | if (sh == NULL) |
| 817 | continue; |
| 818 | |
| 819 | for (unsigned int j = 0; j < sh->NumUniformBlocks; j++) { |
| 820 | int index = link_cross_validate_uniform_block(prog, |
| 821 | &prog->UniformBlocks, |
| 822 | &prog->NumUniformBlocks, |
| 823 | &sh->UniformBlocks[j]); |
| 824 | |
| 825 | if (index == -1) { |
| 826 | linker_error(prog, "uniform block `%s' has mismatching definitions", |
| 827 | sh->UniformBlocks[j].Name); |
| 828 | return false; |
| 829 | } |
| 830 | |
| 831 | prog->UniformBlockStageIndex[i][index] = j; |
| 832 | } |
| 833 | } |
| 834 | |
| 835 | return true; |
| 836 | } |
Ian Romanick | e2e5d0d | 2010-06-29 18:47:11 -0700 | [diff] [blame] | 837 | |
Ian Romanick | 3710192 | 2010-06-18 19:02:10 -0700 | [diff] [blame] | 838 | |
Ian Romanick | 3fb8787 | 2010-07-09 14:09:34 -0700 | [diff] [blame] | 839 | /** |
| 840 | * Populates a shaders symbol table with all global declarations |
| 841 | */ |
| 842 | static void |
| 843 | populate_symbol_table(gl_shader *sh) |
| 844 | { |
| 845 | sh->symbols = new(sh) glsl_symbol_table; |
| 846 | |
| 847 | foreach_list(node, sh->ir) { |
| 848 | ir_instruction *const inst = (ir_instruction *) node; |
| 849 | ir_variable *var; |
| 850 | ir_function *func; |
| 851 | |
| 852 | if ((func = inst->as_function()) != NULL) { |
Eric Anholt | e8f5ebf | 2010-11-05 06:08:45 -0700 | [diff] [blame] | 853 | sh->symbols->add_function(func); |
Ian Romanick | 3fb8787 | 2010-07-09 14:09:34 -0700 | [diff] [blame] | 854 | } else if ((var = inst->as_variable()) != NULL) { |
Eric Anholt | 001eee5 | 2010-11-05 06:11:24 -0700 | [diff] [blame] | 855 | sh->symbols->add_variable(var); |
Ian Romanick | 3fb8787 | 2010-07-09 14:09:34 -0700 | [diff] [blame] | 856 | } |
| 857 | } |
| 858 | } |
| 859 | |
| 860 | |
| 861 | /** |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 862 | * Remap variables referenced in an instruction tree |
| 863 | * |
| 864 | * This is used when instruction trees are cloned from one shader and placed in |
| 865 | * another. These trees will contain references to \c ir_variable nodes that |
| 866 | * do not exist in the target shader. This function finds these \c ir_variable |
| 867 | * references and replaces the references with matching variables in the target |
| 868 | * shader. |
| 869 | * |
| 870 | * If there is no matching variable in the target shader, a clone of the |
| 871 | * \c ir_variable is made and added to the target shader. The new variable is |
| 872 | * added to \b both the instruction stream and the symbol table. |
| 873 | * |
| 874 | * \param inst IR tree that is to be processed. |
| 875 | * \param symbols Symbol table containing global scope symbols in the |
| 876 | * linked shader. |
| 877 | * \param instructions Instruction stream where new variable declarations |
| 878 | * should be added. |
| 879 | */ |
| 880 | void |
Eric Anholt | 8273bd4 | 2010-08-04 12:34:56 -0700 | [diff] [blame] | 881 | remap_variables(ir_instruction *inst, struct gl_shader *target, |
| 882 | hash_table *temps) |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 883 | { |
| 884 | class remap_visitor : public ir_hierarchical_visitor { |
| 885 | public: |
Eric Anholt | 8273bd4 | 2010-08-04 12:34:56 -0700 | [diff] [blame] | 886 | remap_visitor(struct gl_shader *target, |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 887 | hash_table *temps) |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 888 | { |
Eric Anholt | 8273bd4 | 2010-08-04 12:34:56 -0700 | [diff] [blame] | 889 | this->target = target; |
| 890 | this->symbols = target->symbols; |
| 891 | this->instructions = target->ir; |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 892 | this->temps = temps; |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 893 | } |
| 894 | |
| 895 | virtual ir_visitor_status visit(ir_dereference_variable *ir) |
| 896 | { |
Tapani Pälli | 33ee2c6 | 2013-12-12 13:51:01 +0200 | [diff] [blame] | 897 | if (ir->var->data.mode == ir_var_temporary) { |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 898 | ir_variable *var = (ir_variable *) hash_table_find(temps, ir->var); |
| 899 | |
| 900 | assert(var != NULL); |
| 901 | ir->var = var; |
| 902 | return visit_continue; |
| 903 | } |
| 904 | |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 905 | ir_variable *const existing = |
| 906 | this->symbols->get_variable(ir->var->name); |
| 907 | if (existing != NULL) |
| 908 | ir->var = existing; |
| 909 | else { |
Eric Anholt | 8273bd4 | 2010-08-04 12:34:56 -0700 | [diff] [blame] | 910 | ir_variable *copy = ir->var->clone(this->target, NULL); |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 911 | |
Eric Anholt | 001eee5 | 2010-11-05 06:11:24 -0700 | [diff] [blame] | 912 | this->symbols->add_variable(copy); |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 913 | this->instructions->push_head(copy); |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 914 | ir->var = copy; |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 915 | } |
| 916 | |
| 917 | return visit_continue; |
| 918 | } |
| 919 | |
| 920 | private: |
Eric Anholt | 8273bd4 | 2010-08-04 12:34:56 -0700 | [diff] [blame] | 921 | struct gl_shader *target; |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 922 | glsl_symbol_table *symbols; |
| 923 | exec_list *instructions; |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 924 | hash_table *temps; |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 925 | }; |
| 926 | |
Eric Anholt | 8273bd4 | 2010-08-04 12:34:56 -0700 | [diff] [blame] | 927 | remap_visitor v(target, temps); |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 928 | |
| 929 | inst->accept(&v); |
| 930 | } |
| 931 | |
| 932 | |
| 933 | /** |
| 934 | * Move non-declarations from one instruction stream to another |
| 935 | * |
| 936 | * The intended usage pattern of this function is to pass the pointer to the |
Eric Anholt | 62c4763 | 2010-07-29 13:52:25 -0700 | [diff] [blame] | 937 | * head sentinel of a list (i.e., a pointer to the list cast to an \c exec_node |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 938 | * pointer) for \c last and \c false for \c make_copies on the first |
| 939 | * call. Successive calls pass the return value of the previous call for |
| 940 | * \c last and \c true for \c make_copies. |
| 941 | * |
| 942 | * \param instructions Source instruction stream |
| 943 | * \param last Instruction after which new instructions should be |
| 944 | * inserted in the target instruction stream |
| 945 | * \param make_copies Flag selecting whether instructions in \c instructions |
| 946 | * should be copied (via \c ir_instruction::clone) into the |
| 947 | * target list or moved. |
| 948 | * |
| 949 | * \return |
| 950 | * The new "last" instruction in the target instruction stream. This pointer |
| 951 | * is suitable for use as the \c last parameter of a later call to this |
| 952 | * function. |
| 953 | */ |
| 954 | exec_node * |
| 955 | move_non_declarations(exec_list *instructions, exec_node *last, |
| 956 | bool make_copies, gl_shader *target) |
| 957 | { |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 958 | hash_table *temps = NULL; |
| 959 | |
| 960 | if (make_copies) |
| 961 | temps = hash_table_ctor(0, hash_table_pointer_hash, |
| 962 | hash_table_pointer_compare); |
| 963 | |
Ian Romanick | 303c99f | 2010-07-19 12:34:56 -0700 | [diff] [blame] | 964 | foreach_list_safe(node, instructions) { |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 965 | ir_instruction *inst = (ir_instruction *) node; |
| 966 | |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 967 | if (inst->as_function()) |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 968 | continue; |
| 969 | |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 970 | ir_variable *var = inst->as_variable(); |
Tapani Pälli | 33ee2c6 | 2013-12-12 13:51:01 +0200 | [diff] [blame] | 971 | if ((var != NULL) && (var->data.mode != ir_var_temporary)) |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 972 | continue; |
| 973 | |
| 974 | assert(inst->as_assignment() |
Kenneth Graunke | d884f60 | 2012-03-20 15:56:37 -0700 | [diff] [blame] | 975 | || inst->as_call() |
Kenneth Graunke | b45a68e | 2012-10-24 13:17:24 -0700 | [diff] [blame] | 976 | || inst->as_if() /* for initializers with the ?: operator */ |
Tapani Pälli | 33ee2c6 | 2013-12-12 13:51:01 +0200 | [diff] [blame] | 977 | || ((var != NULL) && (var->data.mode == ir_var_temporary))); |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 978 | |
| 979 | if (make_copies) { |
Eric Anholt | 8273bd4 | 2010-08-04 12:34:56 -0700 | [diff] [blame] | 980 | inst = inst->clone(target, NULL); |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 981 | |
| 982 | if (var != NULL) |
| 983 | hash_table_insert(temps, inst, var); |
| 984 | else |
Eric Anholt | 8273bd4 | 2010-08-04 12:34:56 -0700 | [diff] [blame] | 985 | remap_variables(inst, target, temps); |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 986 | } else { |
| 987 | inst->remove(); |
| 988 | } |
| 989 | |
| 990 | last->insert_after(inst); |
| 991 | last = inst; |
| 992 | } |
| 993 | |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 994 | if (make_copies) |
| 995 | hash_table_dtor(temps); |
| 996 | |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 997 | return last; |
| 998 | } |
| 999 | |
| 1000 | /** |
Ian Romanick | 15ce87e | 2010-07-09 15:28:22 -0700 | [diff] [blame] | 1001 | * Get the function signature for main from a shader |
| 1002 | */ |
| 1003 | static ir_function_signature * |
| 1004 | get_main_function_signature(gl_shader *sh) |
| 1005 | { |
| 1006 | ir_function *const f = sh->symbols->get_function("main"); |
| 1007 | if (f != NULL) { |
| 1008 | exec_list void_parameters; |
| 1009 | |
| 1010 | /* Look for the 'void main()' signature and ensure that it's defined. |
| 1011 | * This keeps the linker from accidentally pick a shader that just |
| 1012 | * contains a prototype for main. |
| 1013 | * |
| 1014 | * We don't have to check for multiple definitions of main (in multiple |
| 1015 | * shaders) because that would have already been caught above. |
| 1016 | */ |
Kenneth Graunke | 3e820e3 | 2013-08-30 23:11:55 -0700 | [diff] [blame] | 1017 | ir_function_signature *sig = f->matching_signature(NULL, &void_parameters); |
Ian Romanick | 15ce87e | 2010-07-09 15:28:22 -0700 | [diff] [blame] | 1018 | if ((sig != NULL) && sig->is_defined) { |
| 1019 | return sig; |
| 1020 | } |
| 1021 | } |
| 1022 | |
| 1023 | return NULL; |
| 1024 | } |
| 1025 | |
| 1026 | |
| 1027 | /** |
Brian Paul | 84a1273 | 2012-02-02 20:10:40 -0700 | [diff] [blame] | 1028 | * This class is only used in link_intrastage_shaders() below but declaring |
| 1029 | * it inside that function leads to compiler warnings with some versions of |
| 1030 | * gcc. |
| 1031 | */ |
| 1032 | class array_sizing_visitor : public ir_hierarchical_visitor { |
| 1033 | public: |
Paul Berry | 15e05b9 | 2013-09-25 14:07:37 -0700 | [diff] [blame] | 1034 | array_sizing_visitor() |
| 1035 | : mem_ctx(ralloc_context(NULL)), |
| 1036 | unnamed_interfaces(hash_table_ctor(0, hash_table_pointer_hash, |
| 1037 | hash_table_pointer_compare)) |
| 1038 | { |
| 1039 | } |
| 1040 | |
| 1041 | ~array_sizing_visitor() |
| 1042 | { |
| 1043 | hash_table_dtor(this->unnamed_interfaces); |
| 1044 | ralloc_free(this->mem_ctx); |
| 1045 | } |
| 1046 | |
Brian Paul | 84a1273 | 2012-02-02 20:10:40 -0700 | [diff] [blame] | 1047 | virtual ir_visitor_status visit(ir_variable *var) |
| 1048 | { |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 1049 | fixup_type(&var->type, var->data.max_array_access); |
Paul Berry | e226669 | 2013-09-23 10:44:19 -0700 | [diff] [blame] | 1050 | if (var->type->is_interface()) { |
| 1051 | if (interface_contains_unsized_arrays(var->type)) { |
| 1052 | const glsl_type *new_type = |
| 1053 | resize_interface_members(var->type, var->max_ifc_array_access); |
| 1054 | var->type = new_type; |
| 1055 | var->change_interface_type(new_type); |
| 1056 | } |
| 1057 | } else if (var->type->is_array() && |
| 1058 | var->type->fields.array->is_interface()) { |
| 1059 | if (interface_contains_unsized_arrays(var->type->fields.array)) { |
| 1060 | const glsl_type *new_type = |
| 1061 | resize_interface_members(var->type->fields.array, |
| 1062 | var->max_ifc_array_access); |
| 1063 | var->change_interface_type(new_type); |
| 1064 | var->type = |
| 1065 | glsl_type::get_array_instance(new_type, var->type->length); |
| 1066 | } |
Paul Berry | 15e05b9 | 2013-09-25 14:07:37 -0700 | [diff] [blame] | 1067 | } else if (const glsl_type *ifc_type = var->get_interface_type()) { |
| 1068 | /* Store a pointer to the variable in the unnamed_interfaces |
| 1069 | * hashtable. |
| 1070 | */ |
| 1071 | ir_variable **interface_vars = (ir_variable **) |
| 1072 | hash_table_find(this->unnamed_interfaces, ifc_type); |
| 1073 | if (interface_vars == NULL) { |
| 1074 | interface_vars = rzalloc_array(mem_ctx, ir_variable *, |
| 1075 | ifc_type->length); |
| 1076 | hash_table_insert(this->unnamed_interfaces, interface_vars, |
| 1077 | ifc_type); |
| 1078 | } |
| 1079 | unsigned index = ifc_type->field_index(var->name); |
| 1080 | assert(index < ifc_type->length); |
| 1081 | assert(interface_vars[index] == NULL); |
| 1082 | interface_vars[index] = var; |
Brian Paul | 84a1273 | 2012-02-02 20:10:40 -0700 | [diff] [blame] | 1083 | } |
| 1084 | return visit_continue; |
| 1085 | } |
Paul Berry | e226669 | 2013-09-23 10:44:19 -0700 | [diff] [blame] | 1086 | |
Paul Berry | 15e05b9 | 2013-09-25 14:07:37 -0700 | [diff] [blame] | 1087 | /** |
| 1088 | * For each unnamed interface block that was discovered while running the |
| 1089 | * visitor, adjust the interface type to reflect the newly assigned array |
| 1090 | * sizes, and fix up the ir_variable nodes to point to the new interface |
| 1091 | * type. |
| 1092 | */ |
| 1093 | void fixup_unnamed_interface_types() |
| 1094 | { |
| 1095 | hash_table_call_foreach(this->unnamed_interfaces, |
| 1096 | fixup_unnamed_interface_type, NULL); |
| 1097 | } |
| 1098 | |
Paul Berry | e226669 | 2013-09-23 10:44:19 -0700 | [diff] [blame] | 1099 | private: |
| 1100 | /** |
| 1101 | * If the type pointed to by \c type represents an unsized array, replace |
| 1102 | * it with a sized array whose size is determined by max_array_access. |
| 1103 | */ |
| 1104 | static void fixup_type(const glsl_type **type, unsigned max_array_access) |
| 1105 | { |
Timothy Arceri | b59c592 | 2013-10-23 21:31:27 +1100 | [diff] [blame] | 1106 | if ((*type)->is_unsized_array()) { |
Paul Berry | e226669 | 2013-09-23 10:44:19 -0700 | [diff] [blame] | 1107 | *type = glsl_type::get_array_instance((*type)->fields.array, |
| 1108 | max_array_access + 1); |
| 1109 | assert(*type != NULL); |
| 1110 | } |
| 1111 | } |
| 1112 | |
| 1113 | /** |
| 1114 | * Determine whether the given interface type contains unsized arrays (if |
| 1115 | * it doesn't, array_sizing_visitor doesn't need to process it). |
| 1116 | */ |
| 1117 | static bool interface_contains_unsized_arrays(const glsl_type *type) |
| 1118 | { |
| 1119 | for (unsigned i = 0; i < type->length; i++) { |
| 1120 | const glsl_type *elem_type = type->fields.structure[i].type; |
Timothy Arceri | b59c592 | 2013-10-23 21:31:27 +1100 | [diff] [blame] | 1121 | if (elem_type->is_unsized_array()) |
Paul Berry | e226669 | 2013-09-23 10:44:19 -0700 | [diff] [blame] | 1122 | return true; |
| 1123 | } |
| 1124 | return false; |
| 1125 | } |
| 1126 | |
| 1127 | /** |
| 1128 | * Create a new interface type based on the given type, with unsized arrays |
| 1129 | * replaced by sized arrays whose size is determined by |
| 1130 | * max_ifc_array_access. |
| 1131 | */ |
| 1132 | static const glsl_type * |
| 1133 | resize_interface_members(const glsl_type *type, |
| 1134 | const unsigned *max_ifc_array_access) |
| 1135 | { |
| 1136 | unsigned num_fields = type->length; |
| 1137 | glsl_struct_field *fields = new glsl_struct_field[num_fields]; |
| 1138 | memcpy(fields, type->fields.structure, |
| 1139 | num_fields * sizeof(*fields)); |
| 1140 | for (unsigned i = 0; i < num_fields; i++) { |
| 1141 | fixup_type(&fields[i].type, max_ifc_array_access[i]); |
| 1142 | } |
| 1143 | glsl_interface_packing packing = |
| 1144 | (glsl_interface_packing) type->interface_packing; |
| 1145 | const glsl_type *new_ifc_type = |
| 1146 | glsl_type::get_interface_instance(fields, num_fields, |
| 1147 | packing, type->name); |
| 1148 | delete [] fields; |
| 1149 | return new_ifc_type; |
| 1150 | } |
Paul Berry | 15e05b9 | 2013-09-25 14:07:37 -0700 | [diff] [blame] | 1151 | |
| 1152 | static void fixup_unnamed_interface_type(const void *key, void *data, |
| 1153 | void *) |
| 1154 | { |
| 1155 | const glsl_type *ifc_type = (const glsl_type *) key; |
| 1156 | ir_variable **interface_vars = (ir_variable **) data; |
| 1157 | unsigned num_fields = ifc_type->length; |
| 1158 | glsl_struct_field *fields = new glsl_struct_field[num_fields]; |
| 1159 | memcpy(fields, ifc_type->fields.structure, |
| 1160 | num_fields * sizeof(*fields)); |
| 1161 | bool interface_type_changed = false; |
| 1162 | for (unsigned i = 0; i < num_fields; i++) { |
| 1163 | if (interface_vars[i] != NULL && |
| 1164 | fields[i].type != interface_vars[i]->type) { |
| 1165 | fields[i].type = interface_vars[i]->type; |
| 1166 | interface_type_changed = true; |
| 1167 | } |
| 1168 | } |
| 1169 | if (!interface_type_changed) { |
| 1170 | delete [] fields; |
| 1171 | return; |
| 1172 | } |
| 1173 | glsl_interface_packing packing = |
| 1174 | (glsl_interface_packing) ifc_type->interface_packing; |
| 1175 | const glsl_type *new_ifc_type = |
| 1176 | glsl_type::get_interface_instance(fields, num_fields, packing, |
| 1177 | ifc_type->name); |
| 1178 | delete [] fields; |
| 1179 | for (unsigned i = 0; i < num_fields; i++) { |
| 1180 | if (interface_vars[i] != NULL) |
| 1181 | interface_vars[i]->change_interface_type(new_ifc_type); |
| 1182 | } |
| 1183 | } |
| 1184 | |
| 1185 | /** |
| 1186 | * Memory context used to allocate the data in \c unnamed_interfaces. |
| 1187 | */ |
| 1188 | void *mem_ctx; |
| 1189 | |
| 1190 | /** |
| 1191 | * Hash table from const glsl_type * to an array of ir_variable *'s |
| 1192 | * pointing to the ir_variables constituting each unnamed interface block. |
| 1193 | */ |
| 1194 | hash_table *unnamed_interfaces; |
Brian Paul | 84a1273 | 2012-02-02 20:10:40 -0700 | [diff] [blame] | 1195 | }; |
| 1196 | |
Brian Paul | 84a1273 | 2012-02-02 20:10:40 -0700 | [diff] [blame] | 1197 | /** |
Eric Anholt | 6065a87 | 2013-06-12 18:12:40 -0700 | [diff] [blame] | 1198 | * Performs the cross-validation of geometry shader max_vertices and |
| 1199 | * primitive type layout qualifiers for the attached geometry shaders, |
| 1200 | * and propagates them to the linked GS and linked shader program. |
| 1201 | */ |
| 1202 | static void |
| 1203 | link_gs_inout_layout_qualifiers(struct gl_shader_program *prog, |
| 1204 | struct gl_shader *linked_shader, |
| 1205 | struct gl_shader **shader_list, |
| 1206 | unsigned num_shaders) |
| 1207 | { |
| 1208 | linked_shader->Geom.VerticesOut = 0; |
| 1209 | linked_shader->Geom.InputType = PRIM_UNKNOWN; |
| 1210 | linked_shader->Geom.OutputType = PRIM_UNKNOWN; |
| 1211 | |
| 1212 | /* No in/out qualifiers defined for anything but GLSL 1.50+ |
| 1213 | * geometry shaders so far. |
| 1214 | */ |
Paul Berry | e3b86f0 | 2014-01-07 10:58:56 -0800 | [diff] [blame] | 1215 | if (linked_shader->Stage != MESA_SHADER_GEOMETRY || prog->Version < 150) |
Eric Anholt | 6065a87 | 2013-06-12 18:12:40 -0700 | [diff] [blame] | 1216 | return; |
| 1217 | |
| 1218 | /* From the GLSL 1.50 spec, page 46: |
| 1219 | * |
| 1220 | * "All geometry shader output layout declarations in a program |
| 1221 | * must declare the same layout and same value for |
| 1222 | * max_vertices. There must be at least one geometry output |
| 1223 | * layout declaration somewhere in a program, but not all |
| 1224 | * geometry shaders (compilation units) are required to |
| 1225 | * declare it." |
| 1226 | */ |
| 1227 | |
| 1228 | for (unsigned i = 0; i < num_shaders; i++) { |
| 1229 | struct gl_shader *shader = shader_list[i]; |
| 1230 | |
| 1231 | if (shader->Geom.InputType != PRIM_UNKNOWN) { |
| 1232 | if (linked_shader->Geom.InputType != PRIM_UNKNOWN && |
| 1233 | linked_shader->Geom.InputType != shader->Geom.InputType) { |
| 1234 | linker_error(prog, "geometry shader defined with conflicting " |
| 1235 | "input types\n"); |
| 1236 | return; |
| 1237 | } |
| 1238 | linked_shader->Geom.InputType = shader->Geom.InputType; |
| 1239 | } |
| 1240 | |
| 1241 | if (shader->Geom.OutputType != PRIM_UNKNOWN) { |
| 1242 | if (linked_shader->Geom.OutputType != PRIM_UNKNOWN && |
| 1243 | linked_shader->Geom.OutputType != shader->Geom.OutputType) { |
| 1244 | linker_error(prog, "geometry shader defined with conflicting " |
| 1245 | "output types\n"); |
| 1246 | return; |
| 1247 | } |
| 1248 | linked_shader->Geom.OutputType = shader->Geom.OutputType; |
| 1249 | } |
| 1250 | |
| 1251 | if (shader->Geom.VerticesOut != 0) { |
| 1252 | if (linked_shader->Geom.VerticesOut != 0 && |
| 1253 | linked_shader->Geom.VerticesOut != shader->Geom.VerticesOut) { |
| 1254 | linker_error(prog, "geometry shader defined with conflicting " |
| 1255 | "output vertex count (%d and %d)\n", |
| 1256 | linked_shader->Geom.VerticesOut, |
| 1257 | shader->Geom.VerticesOut); |
| 1258 | return; |
| 1259 | } |
| 1260 | linked_shader->Geom.VerticesOut = shader->Geom.VerticesOut; |
| 1261 | } |
| 1262 | } |
| 1263 | |
| 1264 | /* Just do the intrastage -> interstage propagation right now, |
| 1265 | * since we already know we're in the right type of shader program |
| 1266 | * for doing it. |
| 1267 | */ |
| 1268 | if (linked_shader->Geom.InputType == PRIM_UNKNOWN) { |
| 1269 | linker_error(prog, |
| 1270 | "geometry shader didn't declare primitive input type\n"); |
| 1271 | return; |
| 1272 | } |
| 1273 | prog->Geom.InputType = linked_shader->Geom.InputType; |
| 1274 | |
| 1275 | if (linked_shader->Geom.OutputType == PRIM_UNKNOWN) { |
| 1276 | linker_error(prog, |
| 1277 | "geometry shader didn't declare primitive output type\n"); |
| 1278 | return; |
| 1279 | } |
| 1280 | prog->Geom.OutputType = linked_shader->Geom.OutputType; |
| 1281 | |
| 1282 | if (linked_shader->Geom.VerticesOut == 0) { |
| 1283 | linker_error(prog, |
| 1284 | "geometry shader didn't declare max_vertices\n"); |
| 1285 | return; |
| 1286 | } |
| 1287 | prog->Geom.VerticesOut = linked_shader->Geom.VerticesOut; |
| 1288 | } |
| 1289 | |
Paul Berry | 28ce604 | 2014-01-08 11:59:28 -0800 | [diff] [blame] | 1290 | |
| 1291 | /** |
| 1292 | * Perform cross-validation of compute shader local_size_{x,y,z} layout |
| 1293 | * qualifiers for the attached compute shaders, and propagate them to the |
| 1294 | * linked CS and linked shader program. |
| 1295 | */ |
| 1296 | static void |
| 1297 | link_cs_input_layout_qualifiers(struct gl_shader_program *prog, |
| 1298 | struct gl_shader *linked_shader, |
| 1299 | struct gl_shader **shader_list, |
| 1300 | unsigned num_shaders) |
| 1301 | { |
| 1302 | for (int i = 0; i < 3; i++) |
| 1303 | linked_shader->Comp.LocalSize[i] = 0; |
| 1304 | |
| 1305 | /* This function is called for all shader stages, but it only has an effect |
| 1306 | * for compute shaders. |
| 1307 | */ |
| 1308 | if (linked_shader->Stage != MESA_SHADER_COMPUTE) |
| 1309 | return; |
| 1310 | |
| 1311 | /* From the ARB_compute_shader spec, in the section describing local size |
| 1312 | * declarations: |
| 1313 | * |
| 1314 | * If multiple compute shaders attached to a single program object |
| 1315 | * declare local work-group size, the declarations must be identical; |
| 1316 | * otherwise a link-time error results. Furthermore, if a program |
| 1317 | * object contains any compute shaders, at least one must contain an |
| 1318 | * input layout qualifier specifying the local work sizes of the |
| 1319 | * program, or a link-time error will occur. |
| 1320 | */ |
| 1321 | for (unsigned sh = 0; sh < num_shaders; sh++) { |
| 1322 | struct gl_shader *shader = shader_list[sh]; |
| 1323 | |
| 1324 | if (shader->Comp.LocalSize[0] != 0) { |
| 1325 | if (linked_shader->Comp.LocalSize[0] != 0) { |
| 1326 | for (int i = 0; i < 3; i++) { |
| 1327 | if (linked_shader->Comp.LocalSize[i] != |
| 1328 | shader->Comp.LocalSize[i]) { |
| 1329 | linker_error(prog, "compute shader defined with conflicting " |
| 1330 | "local sizes\n"); |
| 1331 | return; |
| 1332 | } |
| 1333 | } |
| 1334 | } |
| 1335 | for (int i = 0; i < 3; i++) |
| 1336 | linked_shader->Comp.LocalSize[i] = shader->Comp.LocalSize[i]; |
| 1337 | } |
| 1338 | } |
| 1339 | |
| 1340 | /* Just do the intrastage -> interstage propagation right now, |
| 1341 | * since we already know we're in the right type of shader program |
| 1342 | * for doing it. |
| 1343 | */ |
| 1344 | if (linked_shader->Comp.LocalSize[0] == 0) { |
| 1345 | linker_error(prog, "compute shader didn't declare local size\n"); |
| 1346 | return; |
| 1347 | } |
| 1348 | for (int i = 0; i < 3; i++) |
| 1349 | prog->Comp.LocalSize[i] = linked_shader->Comp.LocalSize[i]; |
| 1350 | } |
| 1351 | |
| 1352 | |
Eric Anholt | 6065a87 | 2013-06-12 18:12:40 -0700 | [diff] [blame] | 1353 | /** |
Ian Romanick | 3fb8787 | 2010-07-09 14:09:34 -0700 | [diff] [blame] | 1354 | * Combine a group of shaders for a single stage to generate a linked shader |
| 1355 | * |
| 1356 | * \note |
| 1357 | * If this function is supplied a single shader, it is cloned, and the new |
| 1358 | * shader is returned. |
| 1359 | */ |
| 1360 | static struct gl_shader * |
Kenneth Graunke | 2da02e7 | 2010-11-17 11:03:57 -0800 | [diff] [blame] | 1361 | link_intrastage_shaders(void *mem_ctx, |
| 1362 | struct gl_context *ctx, |
Eric Anholt | 5d0f430 | 2010-08-18 12:02:35 -0700 | [diff] [blame] | 1363 | struct gl_shader_program *prog, |
Ian Romanick | 3fb8787 | 2010-07-09 14:09:34 -0700 | [diff] [blame] | 1364 | struct gl_shader **shader_list, |
| 1365 | unsigned num_shaders) |
| 1366 | { |
Eric Anholt | f609cf7 | 2012-04-27 13:52:56 -0700 | [diff] [blame] | 1367 | struct gl_uniform_block *uniform_blocks = NULL; |
Eric Anholt | f609cf7 | 2012-04-27 13:52:56 -0700 | [diff] [blame] | 1368 | |
Ian Romanick | 13f782c | 2010-06-29 18:53:38 -0700 | [diff] [blame] | 1369 | /* Check that global variables defined in multiple shaders are consistent. |
| 1370 | */ |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 1371 | cross_validate_globals(prog, shader_list, num_shaders, false); |
| 1372 | if (!prog->LinkStatus) |
Ian Romanick | 13f782c | 2010-06-29 18:53:38 -0700 | [diff] [blame] | 1373 | return NULL; |
| 1374 | |
Jordan Justen | 4a0bcd9 | 2013-05-20 23:42:49 -0700 | [diff] [blame] | 1375 | /* Check that interface blocks defined in multiple shaders are consistent. |
| 1376 | */ |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 1377 | validate_intrastage_interface_blocks(prog, (const gl_shader **)shader_list, |
| 1378 | num_shaders); |
| 1379 | if (!prog->LinkStatus) |
Jordan Justen | 4a0bcd9 | 2013-05-20 23:42:49 -0700 | [diff] [blame] | 1380 | return NULL; |
| 1381 | |
Paul Berry | 4682b9b | 2013-07-27 15:07:08 -0700 | [diff] [blame] | 1382 | /* Link up uniform blocks defined within this stage. */ |
| 1383 | const unsigned num_uniform_blocks = |
Ian Romanick | 514f8c7 | 2013-01-22 01:09:16 -0500 | [diff] [blame] | 1384 | link_uniform_blocks(mem_ctx, prog, shader_list, num_shaders, |
| 1385 | &uniform_blocks); |
Eric Anholt | f609cf7 | 2012-04-27 13:52:56 -0700 | [diff] [blame] | 1386 | |
Ian Romanick | 13f782c | 2010-06-29 18:53:38 -0700 | [diff] [blame] | 1387 | /* Check that there is only a single definition of each function signature |
| 1388 | * across all shaders. |
| 1389 | */ |
| 1390 | for (unsigned i = 0; i < (num_shaders - 1); i++) { |
| 1391 | foreach_list(node, shader_list[i]->ir) { |
| 1392 | ir_function *const f = ((ir_instruction *) node)->as_function(); |
| 1393 | |
| 1394 | if (f == NULL) |
| 1395 | continue; |
| 1396 | |
| 1397 | for (unsigned j = i + 1; j < num_shaders; j++) { |
| 1398 | ir_function *const other = |
| 1399 | shader_list[j]->symbols->get_function(f->name); |
| 1400 | |
| 1401 | /* If the other shader has no function (and therefore no function |
| 1402 | * signatures) with the same name, skip to the next shader. |
| 1403 | */ |
| 1404 | if (other == NULL) |
| 1405 | continue; |
| 1406 | |
Kenneth Graunke | 5f7e778 | 2013-11-22 01:25:42 -0800 | [diff] [blame] | 1407 | foreach_list(n, &f->signatures) { |
| 1408 | ir_function_signature *sig = (ir_function_signature *) n; |
Ian Romanick | 13f782c | 2010-06-29 18:53:38 -0700 | [diff] [blame] | 1409 | |
Kenneth Graunke | 4b0bac0 | 2013-08-30 16:12:55 -0700 | [diff] [blame] | 1410 | if (!sig->is_defined || sig->is_builtin()) |
Ian Romanick | 13f782c | 2010-06-29 18:53:38 -0700 | [diff] [blame] | 1411 | continue; |
| 1412 | |
| 1413 | ir_function_signature *other_sig = |
Kenneth Graunke | 3e820e3 | 2013-08-30 23:11:55 -0700 | [diff] [blame] | 1414 | other->exact_matching_signature(NULL, &sig->parameters); |
Ian Romanick | 13f782c | 2010-06-29 18:53:38 -0700 | [diff] [blame] | 1415 | |
| 1416 | if ((other_sig != NULL) && other_sig->is_defined |
Kenneth Graunke | 4b0bac0 | 2013-08-30 16:12:55 -0700 | [diff] [blame] | 1417 | && !other_sig->is_builtin()) { |
Ian Romanick | 586e741 | 2011-07-28 14:04:09 -0700 | [diff] [blame] | 1418 | linker_error(prog, "function `%s' is multiply defined", |
| 1419 | f->name); |
Ian Romanick | 13f782c | 2010-06-29 18:53:38 -0700 | [diff] [blame] | 1420 | return NULL; |
| 1421 | } |
| 1422 | } |
| 1423 | } |
| 1424 | } |
| 1425 | } |
| 1426 | |
| 1427 | /* Find the shader that defines main, and make a clone of it. |
| 1428 | * |
| 1429 | * Starting with the clone, search for undefined references. If one is |
| 1430 | * found, find the shader that defines it. Clone the reference and add |
| 1431 | * it to the shader. Repeat until there are no undefined references or |
| 1432 | * until a reference cannot be resolved. |
| 1433 | */ |
Ian Romanick | 15ce87e | 2010-07-09 15:28:22 -0700 | [diff] [blame] | 1434 | gl_shader *main = NULL; |
| 1435 | for (unsigned i = 0; i < num_shaders; i++) { |
| 1436 | if (get_main_function_signature(shader_list[i]) != NULL) { |
| 1437 | main = shader_list[i]; |
| 1438 | break; |
| 1439 | } |
| 1440 | } |
Ian Romanick | 13f782c | 2010-06-29 18:53:38 -0700 | [diff] [blame] | 1441 | |
Ian Romanick | 15ce87e | 2010-07-09 15:28:22 -0700 | [diff] [blame] | 1442 | if (main == NULL) { |
Ian Romanick | 586e741 | 2011-07-28 14:04:09 -0700 | [diff] [blame] | 1443 | linker_error(prog, "%s shader lacks `main'\n", |
Paul Berry | e3b86f0 | 2014-01-07 10:58:56 -0800 | [diff] [blame] | 1444 | _mesa_shader_stage_to_string(shader_list[0]->Stage)); |
Ian Romanick | 15ce87e | 2010-07-09 15:28:22 -0700 | [diff] [blame] | 1445 | return NULL; |
| 1446 | } |
| 1447 | |
Ian Romanick | 4a45595 | 2010-10-13 15:13:02 -0700 | [diff] [blame] | 1448 | gl_shader *linked = ctx->Driver.NewShader(NULL, 0, main->Type); |
Ian Romanick | 15ce87e | 2010-07-09 15:28:22 -0700 | [diff] [blame] | 1449 | linked->ir = new(linked) exec_list; |
Kenneth Graunke | 2da02e7 | 2010-11-17 11:03:57 -0800 | [diff] [blame] | 1450 | clone_ir_list(mem_ctx, linked->ir, main->ir); |
Ian Romanick | 15ce87e | 2010-07-09 15:28:22 -0700 | [diff] [blame] | 1451 | |
Eric Anholt | f609cf7 | 2012-04-27 13:52:56 -0700 | [diff] [blame] | 1452 | linked->UniformBlocks = uniform_blocks; |
| 1453 | linked->NumUniformBlocks = num_uniform_blocks; |
| 1454 | ralloc_steal(linked, linked->UniformBlocks); |
| 1455 | |
Eric Anholt | 6065a87 | 2013-06-12 18:12:40 -0700 | [diff] [blame] | 1456 | link_gs_inout_layout_qualifiers(prog, linked, shader_list, num_shaders); |
Paul Berry | 28ce604 | 2014-01-08 11:59:28 -0800 | [diff] [blame] | 1457 | link_cs_input_layout_qualifiers(prog, linked, shader_list, num_shaders); |
Eric Anholt | 6065a87 | 2013-06-12 18:12:40 -0700 | [diff] [blame] | 1458 | |
Ian Romanick | 15ce87e | 2010-07-09 15:28:22 -0700 | [diff] [blame] | 1459 | populate_symbol_table(linked); |
Ian Romanick | 13f782c | 2010-06-29 18:53:38 -0700 | [diff] [blame] | 1460 | |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 1461 | /* The a pointer to the main function in the final linked shader (i.e., the |
| 1462 | * copy of the original shader that contained the main function). |
| 1463 | */ |
| 1464 | ir_function_signature *const main_sig = get_main_function_signature(linked); |
| 1465 | |
| 1466 | /* Move any instructions other than variable declarations or function |
| 1467 | * declarations into main. |
| 1468 | */ |
Ian Romanick | 9303e35 | 2010-07-19 12:33:54 -0700 | [diff] [blame] | 1469 | exec_node *insertion_point = |
| 1470 | move_non_declarations(linked->ir, (exec_node *) &main_sig->body, false, |
| 1471 | linked); |
| 1472 | |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 1473 | for (unsigned i = 0; i < num_shaders; i++) { |
Ian Romanick | 9303e35 | 2010-07-19 12:33:54 -0700 | [diff] [blame] | 1474 | if (shader_list[i] == main) |
| 1475 | continue; |
| 1476 | |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 1477 | insertion_point = move_non_declarations(shader_list[i]->ir, |
Ian Romanick | 9303e35 | 2010-07-19 12:33:54 -0700 | [diff] [blame] | 1478 | insertion_point, true, linked); |
Ian Romanick | 31a9786 | 2010-07-12 18:48:50 -0700 | [diff] [blame] | 1479 | } |
| 1480 | |
Kenneth Graunke | 5b331f6 | 2013-11-23 12:11:34 -0800 | [diff] [blame] | 1481 | /* Check if any shader needs built-in functions. */ |
| 1482 | bool need_builtins = false; |
Ian Romanick | d5be2ac | 2010-07-20 11:29:46 -0700 | [diff] [blame] | 1483 | for (unsigned i = 0; i < num_shaders; i++) { |
Kenneth Graunke | 5b331f6 | 2013-11-23 12:11:34 -0800 | [diff] [blame] | 1484 | if (shader_list[i]->uses_builtin_functions) { |
| 1485 | need_builtins = true; |
| 1486 | break; |
| 1487 | } |
Ian Romanick | d5be2ac | 2010-07-20 11:29:46 -0700 | [diff] [blame] | 1488 | } |
| 1489 | |
Kenneth Graunke | 5b331f6 | 2013-11-23 12:11:34 -0800 | [diff] [blame] | 1490 | bool ok; |
| 1491 | if (need_builtins) { |
| 1492 | /* Make a temporary array one larger than shader_list, which will hold |
| 1493 | * the built-in function shader as well. |
| 1494 | */ |
| 1495 | gl_shader **linking_shaders = (gl_shader **) |
| 1496 | calloc(num_shaders + 1, sizeof(gl_shader *)); |
| 1497 | memcpy(linking_shaders, shader_list, num_shaders * sizeof(gl_shader *)); |
| 1498 | linking_shaders[num_shaders] = _mesa_glsl_get_builtin_function_shader(); |
Ian Romanick | d5be2ac | 2010-07-20 11:29:46 -0700 | [diff] [blame] | 1499 | |
Kenneth Graunke | 5b331f6 | 2013-11-23 12:11:34 -0800 | [diff] [blame] | 1500 | ok = link_function_calls(prog, linked, linking_shaders, num_shaders + 1); |
| 1501 | |
Kenneth Graunke | 7d2423a | 2013-08-02 00:35:05 -0700 | [diff] [blame] | 1502 | free(linking_shaders); |
Kenneth Graunke | 5b331f6 | 2013-11-23 12:11:34 -0800 | [diff] [blame] | 1503 | } else { |
| 1504 | ok = link_function_calls(prog, linked, shader_list, num_shaders); |
| 1505 | } |
| 1506 | |
| 1507 | |
| 1508 | if (!ok) { |
| 1509 | ctx->Driver.DeleteShader(ctx, linked); |
Kenneth Graunke | 7d2423a | 2013-08-02 00:35:05 -0700 | [diff] [blame] | 1510 | return NULL; |
Ian Romanick | 4a45595 | 2010-10-13 15:13:02 -0700 | [diff] [blame] | 1511 | } |
Ian Romanick | d5be2ac | 2010-07-20 11:29:46 -0700 | [diff] [blame] | 1512 | |
Paul Berry | c148ef6 | 2011-08-03 15:37:01 -0700 | [diff] [blame] | 1513 | /* At this point linked should contain all of the linked IR, so |
| 1514 | * validate it to make sure nothing went wrong. |
| 1515 | */ |
Kenneth Graunke | 7d2423a | 2013-08-02 00:35:05 -0700 | [diff] [blame] | 1516 | validate_ir_tree(linked->ir); |
Paul Berry | c148ef6 | 2011-08-03 15:37:01 -0700 | [diff] [blame] | 1517 | |
Paul Berry | 7cfefe6 | 2013-07-30 21:13:48 -0700 | [diff] [blame] | 1518 | /* Set the size of geometry shader input arrays */ |
Paul Berry | e3b86f0 | 2014-01-07 10:58:56 -0800 | [diff] [blame] | 1519 | if (linked->Stage == MESA_SHADER_GEOMETRY) { |
Paul Berry | 7cfefe6 | 2013-07-30 21:13:48 -0700 | [diff] [blame] | 1520 | unsigned num_vertices = vertices_per_prim(prog->Geom.InputType); |
| 1521 | geom_array_resize_visitor input_resize_visitor(num_vertices, prog); |
Kenneth Graunke | 5f7e778 | 2013-11-22 01:25:42 -0800 | [diff] [blame] | 1522 | foreach_list(n, linked->ir) { |
| 1523 | ir_instruction *ir = (ir_instruction *) n; |
Paul Berry | 7cfefe6 | 2013-07-30 21:13:48 -0700 | [diff] [blame] | 1524 | ir->accept(&input_resize_visitor); |
| 1525 | } |
| 1526 | } |
| 1527 | |
Ian Romanick | c87e9ef | 2011-01-25 12:04:08 -0800 | [diff] [blame] | 1528 | /* Make a pass over all variable declarations to ensure that arrays with |
Ian Romanick | 6f53921 | 2010-12-07 18:30:33 -0800 | [diff] [blame] | 1529 | * unspecified sizes have a size specified. The size is inferred from the |
| 1530 | * max_array_access field. |
| 1531 | */ |
Kenneth Graunke | 7d2423a | 2013-08-02 00:35:05 -0700 | [diff] [blame] | 1532 | array_sizing_visitor v; |
| 1533 | v.run(linked->ir); |
Paul Berry | 15e05b9 | 2013-09-25 14:07:37 -0700 | [diff] [blame] | 1534 | v.fixup_unnamed_interface_types(); |
Ian Romanick | 6f53921 | 2010-12-07 18:30:33 -0800 | [diff] [blame] | 1535 | |
Ian Romanick | 3fb8787 | 2010-07-09 14:09:34 -0700 | [diff] [blame] | 1536 | return linked; |
| 1537 | } |
| 1538 | |
Eric Anholt | a721abf | 2010-08-23 10:32:01 -0700 | [diff] [blame] | 1539 | /** |
| 1540 | * Update the sizes of linked shader uniform arrays to the maximum |
| 1541 | * array index used. |
| 1542 | * |
| 1543 | * From page 81 (page 95 of the PDF) of the OpenGL 2.1 spec: |
| 1544 | * |
| 1545 | * If one or more elements of an array are active, |
| 1546 | * GetActiveUniform will return the name of the array in name, |
| 1547 | * subject to the restrictions listed above. The type of the array |
| 1548 | * is returned in type. The size parameter contains the highest |
| 1549 | * array element index used, plus one. The compiler or linker |
| 1550 | * determines the highest index used. There will be only one |
| 1551 | * active uniform reported by the GL per uniform array. |
| 1552 | |
| 1553 | */ |
| 1554 | static void |
Eric Anholt | 586b4b5 | 2010-09-28 14:32:16 -0700 | [diff] [blame] | 1555 | update_array_sizes(struct gl_shader_program *prog) |
Eric Anholt | a721abf | 2010-08-23 10:32:01 -0700 | [diff] [blame] | 1556 | { |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 1557 | for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) { |
Ian Romanick | 3322fba | 2010-10-14 13:28:42 -0700 | [diff] [blame] | 1558 | if (prog->_LinkedShaders[i] == NULL) |
| 1559 | continue; |
| 1560 | |
Eric Anholt | a721abf | 2010-08-23 10:32:01 -0700 | [diff] [blame] | 1561 | foreach_list(node, prog->_LinkedShaders[i]->ir) { |
| 1562 | ir_variable *const var = ((ir_instruction *) node)->as_variable(); |
| 1563 | |
Tapani Pälli | 33ee2c6 | 2013-12-12 13:51:01 +0200 | [diff] [blame] | 1564 | if ((var == NULL) || (var->data.mode != ir_var_uniform) || |
Eric Anholt | a721abf | 2010-08-23 10:32:01 -0700 | [diff] [blame] | 1565 | !var->type->is_array()) |
| 1566 | continue; |
| 1567 | |
Eric Anholt | 9feb403 | 2012-05-01 14:43:31 -0700 | [diff] [blame] | 1568 | /* GL_ARB_uniform_buffer_object says that std140 uniforms |
| 1569 | * will not be eliminated. Since we always do std140, just |
| 1570 | * don't resize arrays in UBOs. |
Francisco Jerez | 5c11493 | 2013-09-11 12:14:46 -0700 | [diff] [blame] | 1571 | * |
| 1572 | * Atomic counters are supposed to get deterministic |
| 1573 | * locations assigned based on the declaration ordering and |
| 1574 | * sizes, array compaction would mess that up. |
Eric Anholt | 9feb403 | 2012-05-01 14:43:31 -0700 | [diff] [blame] | 1575 | */ |
Francisco Jerez | 5c11493 | 2013-09-11 12:14:46 -0700 | [diff] [blame] | 1576 | if (var->is_in_uniform_block() || var->type->contains_atomic()) |
Eric Anholt | 9feb403 | 2012-05-01 14:43:31 -0700 | [diff] [blame] | 1577 | continue; |
| 1578 | |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 1579 | unsigned int size = var->data.max_array_access; |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 1580 | for (unsigned j = 0; j < MESA_SHADER_STAGES; j++) { |
Ian Romanick | 3322fba | 2010-10-14 13:28:42 -0700 | [diff] [blame] | 1581 | if (prog->_LinkedShaders[j] == NULL) |
| 1582 | continue; |
| 1583 | |
Eric Anholt | a721abf | 2010-08-23 10:32:01 -0700 | [diff] [blame] | 1584 | foreach_list(node2, prog->_LinkedShaders[j]->ir) { |
| 1585 | ir_variable *other_var = ((ir_instruction *) node2)->as_variable(); |
| 1586 | if (!other_var) |
| 1587 | continue; |
| 1588 | |
| 1589 | if (strcmp(var->name, other_var->name) == 0 && |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 1590 | other_var->data.max_array_access > size) { |
| 1591 | size = other_var->data.max_array_access; |
Eric Anholt | a721abf | 2010-08-23 10:32:01 -0700 | [diff] [blame] | 1592 | } |
| 1593 | } |
| 1594 | } |
Eric Anholt | 586b4b5 | 2010-09-28 14:32:16 -0700 | [diff] [blame] | 1595 | |
Fabian Bieler | 6368478 | 2013-06-14 13:37:07 +0200 | [diff] [blame] | 1596 | if (size + 1 != var->type->length) { |
Ian Romanick | 89d81ab | 2011-01-25 10:41:20 -0800 | [diff] [blame] | 1597 | /* If this is a built-in uniform (i.e., it's backed by some |
| 1598 | * fixed-function state), adjust the number of state slots to |
| 1599 | * match the new array size. The number of slots per array entry |
Bryan Cain | f18a086 | 2011-04-23 19:29:15 -0500 | [diff] [blame] | 1600 | * is not known. It seems safe to assume that the total number of |
Ian Romanick | 89d81ab | 2011-01-25 10:41:20 -0800 | [diff] [blame] | 1601 | * slots is an integer multiple of the number of array elements. |
| 1602 | * Determine the number of slots per array element by dividing by |
| 1603 | * the old (total) size. |
| 1604 | */ |
| 1605 | if (var->num_state_slots > 0) { |
| 1606 | var->num_state_slots = (size + 1) |
| 1607 | * (var->num_state_slots / var->type->length); |
| 1608 | } |
| 1609 | |
Eric Anholt | a721abf | 2010-08-23 10:32:01 -0700 | [diff] [blame] | 1610 | var->type = glsl_type::get_array_instance(var->type->fields.array, |
| 1611 | size + 1); |
| 1612 | /* FINISHME: We should update the types of array |
| 1613 | * dereferences of this variable now. |
| 1614 | */ |
| 1615 | } |
| 1616 | } |
| 1617 | } |
| 1618 | } |
| 1619 | |
Ian Romanick | 6984670 | 2010-06-22 17:29:19 -0700 | [diff] [blame] | 1620 | /** |
Bryan Cain | f18a086 | 2011-04-23 19:29:15 -0500 | [diff] [blame] | 1621 | * Find a contiguous set of available bits in a bitmask. |
Ian Romanick | 6984670 | 2010-06-22 17:29:19 -0700 | [diff] [blame] | 1622 | * |
| 1623 | * \param used_mask Bits representing used (1) and unused (0) locations |
| 1624 | * \param needed_count Number of contiguous bits needed. |
| 1625 | * |
| 1626 | * \return |
| 1627 | * Base location of the available bits on success or -1 on failure. |
| 1628 | */ |
| 1629 | int |
| 1630 | find_available_slots(unsigned used_mask, unsigned needed_count) |
| 1631 | { |
| 1632 | unsigned needed_mask = (1 << needed_count) - 1; |
| 1633 | const int max_bit_to_test = (8 * sizeof(used_mask)) - needed_count; |
| 1634 | |
| 1635 | /* The comparison to 32 is redundant, but without it GCC emits "warning: |
| 1636 | * cannot optimize possibly infinite loops" for the loop below. |
| 1637 | */ |
| 1638 | if ((needed_count == 0) || (max_bit_to_test < 0) || (max_bit_to_test > 32)) |
| 1639 | return -1; |
| 1640 | |
| 1641 | for (int i = 0; i <= max_bit_to_test; i++) { |
| 1642 | if ((needed_mask & ~used_mask) == needed_mask) |
| 1643 | return i; |
| 1644 | |
| 1645 | needed_mask <<= 1; |
| 1646 | } |
| 1647 | |
| 1648 | return -1; |
| 1649 | } |
| 1650 | |
| 1651 | |
Ian Romanick | d32d4f7 | 2011-06-27 17:59:58 -0700 | [diff] [blame] | 1652 | /** |
| 1653 | * Assign locations for either VS inputs for FS outputs |
| 1654 | * |
| 1655 | * \param prog Shader program whose variables need locations assigned |
| 1656 | * \param target_index Selector for the program target to receive location |
| 1657 | * assignmnets. Must be either \c MESA_SHADER_VERTEX or |
| 1658 | * \c MESA_SHADER_FRAGMENT. |
| 1659 | * \param max_index Maximum number of generic locations. This corresponds |
| 1660 | * to either the maximum number of draw buffers or the |
| 1661 | * maximum number of generic attributes. |
| 1662 | * |
| 1663 | * \return |
| 1664 | * If locations are successfully assigned, true is returned. Otherwise an |
| 1665 | * error is emitted to the shader link log and false is returned. |
Ian Romanick | d32d4f7 | 2011-06-27 17:59:58 -0700 | [diff] [blame] | 1666 | */ |
Ian Romanick | 6984670 | 2010-06-22 17:29:19 -0700 | [diff] [blame] | 1667 | bool |
Ian Romanick | d32d4f7 | 2011-06-27 17:59:58 -0700 | [diff] [blame] | 1668 | assign_attribute_or_color_locations(gl_shader_program *prog, |
| 1669 | unsigned target_index, |
| 1670 | unsigned max_index) |
Ian Romanick | 0ad22cd | 2010-06-21 17:18:31 -0700 | [diff] [blame] | 1671 | { |
Ian Romanick | d32d4f7 | 2011-06-27 17:59:58 -0700 | [diff] [blame] | 1672 | /* Mark invalid locations as being used. |
Ian Romanick | 9342d26 | 2010-06-22 17:41:37 -0700 | [diff] [blame] | 1673 | */ |
Ian Romanick | d32d4f7 | 2011-06-27 17:59:58 -0700 | [diff] [blame] | 1674 | unsigned used_locations = (max_index >= 32) |
| 1675 | ? ~0 : ~((1 << max_index) - 1); |
Ian Romanick | 0ad22cd | 2010-06-21 17:18:31 -0700 | [diff] [blame] | 1676 | |
Ian Romanick | d32d4f7 | 2011-06-27 17:59:58 -0700 | [diff] [blame] | 1677 | assert((target_index == MESA_SHADER_VERTEX) |
| 1678 | || (target_index == MESA_SHADER_FRAGMENT)); |
| 1679 | |
| 1680 | gl_shader *const sh = prog->_LinkedShaders[target_index]; |
| 1681 | if (sh == NULL) |
| 1682 | return true; |
Ian Romanick | 0ad22cd | 2010-06-21 17:18:31 -0700 | [diff] [blame] | 1683 | |
Ian Romanick | 6984670 | 2010-06-22 17:29:19 -0700 | [diff] [blame] | 1684 | /* Operate in a total of four passes. |
Ian Romanick | 0ad22cd | 2010-06-21 17:18:31 -0700 | [diff] [blame] | 1685 | * |
| 1686 | * 1. Invalidate the location assignments for all vertex shader inputs. |
| 1687 | * |
| 1688 | * 2. Assign locations for inputs that have user-defined (via |
Ian Romanick | b12b5d9 | 2011-11-04 16:08:52 -0700 | [diff] [blame] | 1689 | * glBindVertexAttribLocation) locations and outputs that have |
| 1690 | * user-defined locations (via glBindFragDataLocation). |
Ian Romanick | 0ad22cd | 2010-06-21 17:18:31 -0700 | [diff] [blame] | 1691 | * |
Ian Romanick | 6984670 | 2010-06-22 17:29:19 -0700 | [diff] [blame] | 1692 | * 3. Sort the attributes without assigned locations by number of slots |
| 1693 | * required in decreasing order. Fragmentation caused by attribute |
| 1694 | * locations assigned by the application may prevent large attributes |
| 1695 | * from having enough contiguous space. |
| 1696 | * |
| 1697 | * 4. Assign locations to any inputs without assigned locations. |
Ian Romanick | 0ad22cd | 2010-06-21 17:18:31 -0700 | [diff] [blame] | 1698 | */ |
| 1699 | |
Ian Romanick | d32d4f7 | 2011-06-27 17:59:58 -0700 | [diff] [blame] | 1700 | const int generic_base = (target_index == MESA_SHADER_VERTEX) |
Brian Paul | 7eb7d67 | 2011-07-07 16:47:59 -0600 | [diff] [blame] | 1701 | ? (int) VERT_ATTRIB_GENERIC0 : (int) FRAG_RESULT_DATA0; |
Ian Romanick | 0ad22cd | 2010-06-21 17:18:31 -0700 | [diff] [blame] | 1702 | |
Ian Romanick | d32d4f7 | 2011-06-27 17:59:58 -0700 | [diff] [blame] | 1703 | const enum ir_variable_mode direction = |
Paul Berry | 42a29d8 | 2013-01-11 14:39:32 -0800 | [diff] [blame] | 1704 | (target_index == MESA_SHADER_VERTEX) |
| 1705 | ? ir_var_shader_in : ir_var_shader_out; |
Ian Romanick | d32d4f7 | 2011-06-27 17:59:58 -0700 | [diff] [blame] | 1706 | |
| 1707 | |
Ian Romanick | 6984670 | 2010-06-22 17:29:19 -0700 | [diff] [blame] | 1708 | /* Temporary storage for the set of attributes that need locations assigned. |
| 1709 | */ |
| 1710 | struct temp_attr { |
| 1711 | unsigned slots; |
| 1712 | ir_variable *var; |
| 1713 | |
| 1714 | /* Used below in the call to qsort. */ |
| 1715 | static int compare(const void *a, const void *b) |
| 1716 | { |
| 1717 | const temp_attr *const l = (const temp_attr *) a; |
| 1718 | const temp_attr *const r = (const temp_attr *) b; |
| 1719 | |
| 1720 | /* Reversed because we want a descending order sort below. */ |
| 1721 | return r->slots - l->slots; |
| 1722 | } |
| 1723 | } to_assign[16]; |
| 1724 | |
| 1725 | unsigned num_attr = 0; |
| 1726 | |
Eric Anholt | 16b68b1 | 2010-06-30 11:05:43 -0700 | [diff] [blame] | 1727 | foreach_list(node, sh->ir) { |
Ian Romanick | 0ad22cd | 2010-06-21 17:18:31 -0700 | [diff] [blame] | 1728 | ir_variable *const var = ((ir_instruction *) node)->as_variable(); |
| 1729 | |
Tapani Pälli | 33ee2c6 | 2013-12-12 13:51:01 +0200 | [diff] [blame] | 1730 | if ((var == NULL) || (var->data.mode != (unsigned) direction)) |
Ian Romanick | 0ad22cd | 2010-06-21 17:18:31 -0700 | [diff] [blame] | 1731 | continue; |
| 1732 | |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 1733 | if (var->data.explicit_location) { |
| 1734 | if ((var->data.location >= (int)(max_index + generic_base)) |
| 1735 | || (var->data.location < 0)) { |
Ian Romanick | 586e741 | 2011-07-28 14:04:09 -0700 | [diff] [blame] | 1736 | linker_error(prog, |
| 1737 | "invalid explicit location %d specified for `%s'\n", |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 1738 | (var->data.location < 0) |
| 1739 | ? var->data.location |
| 1740 | : var->data.location - generic_base, |
Ian Romanick | 586e741 | 2011-07-28 14:04:09 -0700 | [diff] [blame] | 1741 | var->name); |
Ian Romanick | 68a4fc9 | 2010-10-07 17:21:22 -0700 | [diff] [blame] | 1742 | return false; |
Ian Romanick | 523b611 | 2011-08-17 15:40:03 -0700 | [diff] [blame] | 1743 | } |
| 1744 | } else if (target_index == MESA_SHADER_VERTEX) { |
| 1745 | unsigned binding; |
| 1746 | |
| 1747 | if (prog->AttributeBindings->get(binding, var->name)) { |
| 1748 | assert(binding >= VERT_ATTRIB_GENERIC0); |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 1749 | var->data.location = binding; |
| 1750 | var->data.is_unmatched_generic_inout = 0; |
Ian Romanick | 68a4fc9 | 2010-10-07 17:21:22 -0700 | [diff] [blame] | 1751 | } |
Ian Romanick | b12b5d9 | 2011-11-04 16:08:52 -0700 | [diff] [blame] | 1752 | } else if (target_index == MESA_SHADER_FRAGMENT) { |
| 1753 | unsigned binding; |
Dave Airlie | 1256a5d | 2012-03-24 13:33:41 +0000 | [diff] [blame] | 1754 | unsigned index; |
Ian Romanick | b12b5d9 | 2011-11-04 16:08:52 -0700 | [diff] [blame] | 1755 | |
| 1756 | if (prog->FragDataBindings->get(binding, var->name)) { |
| 1757 | assert(binding >= FRAG_RESULT_DATA0); |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 1758 | var->data.location = binding; |
| 1759 | var->data.is_unmatched_generic_inout = 0; |
Dave Airlie | 1256a5d | 2012-03-24 13:33:41 +0000 | [diff] [blame] | 1760 | |
| 1761 | if (prog->FragDataIndexBindings->get(index, var->name)) { |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 1762 | var->data.index = index; |
Dave Airlie | 1256a5d | 2012-03-24 13:33:41 +0000 | [diff] [blame] | 1763 | } |
Ian Romanick | b12b5d9 | 2011-11-04 16:08:52 -0700 | [diff] [blame] | 1764 | } |
Ian Romanick | 68a4fc9 | 2010-10-07 17:21:22 -0700 | [diff] [blame] | 1765 | } |
| 1766 | |
Ian Romanick | 9f0e98d | 2011-10-06 10:25:34 -0700 | [diff] [blame] | 1767 | /* If the variable is not a built-in and has a location statically |
| 1768 | * assigned in the shader (presumably via a layout qualifier), make sure |
| 1769 | * that it doesn't collide with other assigned locations. Otherwise, |
| 1770 | * add it to the list of variables that need linker-assigned locations. |
Ian Romanick | 0ad22cd | 2010-06-21 17:18:31 -0700 | [diff] [blame] | 1771 | */ |
Paul Berry | 0026ad4 | 2013-07-31 08:15:08 -0700 | [diff] [blame] | 1772 | const unsigned slots = var->type->count_attribute_slots(); |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 1773 | if (var->data.location != -1) { |
| 1774 | if (var->data.location >= generic_base && var->data.index < 1) { |
Ian Romanick | 523b611 | 2011-08-17 15:40:03 -0700 | [diff] [blame] | 1775 | /* From page 61 of the OpenGL 4.0 spec: |
| 1776 | * |
| 1777 | * "LinkProgram will fail if the attribute bindings assigned |
| 1778 | * by BindAttribLocation do not leave not enough space to |
| 1779 | * assign a location for an active matrix attribute or an |
| 1780 | * active attribute array, both of which require multiple |
| 1781 | * contiguous generic attributes." |
| 1782 | * |
| 1783 | * Previous versions of the spec contain similar language but omit |
| 1784 | * the bit about attribute arrays. |
| 1785 | * |
| 1786 | * Page 61 of the OpenGL 4.0 spec also says: |
| 1787 | * |
| 1788 | * "It is possible for an application to bind more than one |
| 1789 | * attribute name to the same location. This is referred to as |
| 1790 | * aliasing. This will only work if only one of the aliased |
| 1791 | * attributes is active in the executable program, or if no |
| 1792 | * path through the shader consumes more than one attribute of |
| 1793 | * a set of attributes aliased to the same location. A link |
| 1794 | * error can occur if the linker determines that every path |
| 1795 | * through the shader consumes multiple aliased attributes, |
| 1796 | * but implementations are not required to generate an error |
| 1797 | * in this case." |
| 1798 | * |
| 1799 | * These two paragraphs are either somewhat contradictory, or I |
| 1800 | * don't fully understand one or both of them. |
| 1801 | */ |
| 1802 | /* FINISHME: The code as currently written does not support |
| 1803 | * FINISHME: attribute location aliasing (see comment above). |
| 1804 | */ |
| 1805 | /* Mask representing the contiguous slots that will be used by |
| 1806 | * this attribute. |
| 1807 | */ |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 1808 | const unsigned attr = var->data.location - generic_base; |
Ian Romanick | 523b611 | 2011-08-17 15:40:03 -0700 | [diff] [blame] | 1809 | const unsigned use_mask = (1 << slots) - 1; |
Ian Romanick | 0ad22cd | 2010-06-21 17:18:31 -0700 | [diff] [blame] | 1810 | |
Ian Romanick | 523b611 | 2011-08-17 15:40:03 -0700 | [diff] [blame] | 1811 | /* Generate a link error if the set of bits requested for this |
| 1812 | * attribute overlaps any previously allocated bits. |
| 1813 | */ |
| 1814 | if ((~(use_mask << attr) & used_locations) != used_locations) { |
Dave Airlie | 7449ae4 | 2011-11-20 19:56:35 +0000 | [diff] [blame] | 1815 | const char *const string = (target_index == MESA_SHADER_VERTEX) |
| 1816 | ? "vertex shader input" : "fragment shader output"; |
Ian Romanick | 523b611 | 2011-08-17 15:40:03 -0700 | [diff] [blame] | 1817 | linker_error(prog, |
Dave Airlie | 7449ae4 | 2011-11-20 19:56:35 +0000 | [diff] [blame] | 1818 | "insufficient contiguous locations " |
Dave Airlie | 1256a5d | 2012-03-24 13:33:41 +0000 | [diff] [blame] | 1819 | "available for %s `%s' %d %d %d", string, |
| 1820 | var->name, used_locations, use_mask, attr); |
Ian Romanick | 523b611 | 2011-08-17 15:40:03 -0700 | [diff] [blame] | 1821 | return false; |
| 1822 | } |
| 1823 | |
| 1824 | used_locations |= (use_mask << attr); |
| 1825 | } |
| 1826 | |
| 1827 | continue; |
| 1828 | } |
| 1829 | |
| 1830 | to_assign[num_attr].slots = slots; |
Ian Romanick | 6984670 | 2010-06-22 17:29:19 -0700 | [diff] [blame] | 1831 | to_assign[num_attr].var = var; |
| 1832 | num_attr++; |
Ian Romanick | 0ad22cd | 2010-06-21 17:18:31 -0700 | [diff] [blame] | 1833 | } |
Ian Romanick | 6984670 | 2010-06-22 17:29:19 -0700 | [diff] [blame] | 1834 | |
| 1835 | /* If all of the attributes were assigned locations by the application (or |
| 1836 | * are built-in attributes with fixed locations), return early. This should |
| 1837 | * be the common case. |
| 1838 | */ |
| 1839 | if (num_attr == 0) |
| 1840 | return true; |
| 1841 | |
| 1842 | qsort(to_assign, num_attr, sizeof(to_assign[0]), temp_attr::compare); |
| 1843 | |
Ian Romanick | d32d4f7 | 2011-06-27 17:59:58 -0700 | [diff] [blame] | 1844 | if (target_index == MESA_SHADER_VERTEX) { |
| 1845 | /* VERT_ATTRIB_GENERIC0 is a pseudo-alias for VERT_ATTRIB_POS. It can |
| 1846 | * only be explicitly assigned by via glBindAttribLocation. Mark it as |
| 1847 | * reserved to prevent it from being automatically allocated below. |
| 1848 | */ |
| 1849 | find_deref_visitor find("gl_Vertex"); |
| 1850 | find.run(sh->ir); |
| 1851 | if (find.variable_found()) |
| 1852 | used_locations |= (1 << 0); |
| 1853 | } |
Ian Romanick | 982e379 | 2010-06-29 18:58:20 -0700 | [diff] [blame] | 1854 | |
Ian Romanick | 6984670 | 2010-06-22 17:29:19 -0700 | [diff] [blame] | 1855 | for (unsigned i = 0; i < num_attr; i++) { |
| 1856 | /* Mask representing the contiguous slots that will be used by this |
| 1857 | * attribute. |
| 1858 | */ |
| 1859 | const unsigned use_mask = (1 << to_assign[i].slots) - 1; |
| 1860 | |
| 1861 | int location = find_available_slots(used_locations, to_assign[i].slots); |
| 1862 | |
| 1863 | if (location < 0) { |
Ian Romanick | d32d4f7 | 2011-06-27 17:59:58 -0700 | [diff] [blame] | 1864 | const char *const string = (target_index == MESA_SHADER_VERTEX) |
| 1865 | ? "vertex shader input" : "fragment shader output"; |
| 1866 | |
Ian Romanick | 586e741 | 2011-07-28 14:04:09 -0700 | [diff] [blame] | 1867 | linker_error(prog, |
Dave Airlie | 7449ae4 | 2011-11-20 19:56:35 +0000 | [diff] [blame] | 1868 | "insufficient contiguous locations " |
Ian Romanick | 586e741 | 2011-07-28 14:04:09 -0700 | [diff] [blame] | 1869 | "available for %s `%s'", |
| 1870 | string, to_assign[i].var->name); |
Ian Romanick | 6984670 | 2010-06-22 17:29:19 -0700 | [diff] [blame] | 1871 | return false; |
| 1872 | } |
| 1873 | |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 1874 | to_assign[i].var->data.location = generic_base + location; |
| 1875 | to_assign[i].var->data.is_unmatched_generic_inout = 0; |
Ian Romanick | 6984670 | 2010-06-22 17:29:19 -0700 | [diff] [blame] | 1876 | used_locations |= (use_mask << location); |
| 1877 | } |
| 1878 | |
| 1879 | return true; |
Ian Romanick | 0ad22cd | 2010-06-21 17:18:31 -0700 | [diff] [blame] | 1880 | } |
| 1881 | |
| 1882 | |
Ian Romanick | 40e114b | 2010-08-17 14:55:50 -0700 | [diff] [blame] | 1883 | /** |
Ian Romanick | cc90e62 | 2010-10-19 17:59:10 -0700 | [diff] [blame] | 1884 | * Demote shader inputs and outputs that are not used in other stages |
Ian Romanick | 40e114b | 2010-08-17 14:55:50 -0700 | [diff] [blame] | 1885 | */ |
| 1886 | void |
Ian Romanick | cc90e62 | 2010-10-19 17:59:10 -0700 | [diff] [blame] | 1887 | demote_shader_inputs_and_outputs(gl_shader *sh, enum ir_variable_mode mode) |
Ian Romanick | 40e114b | 2010-08-17 14:55:50 -0700 | [diff] [blame] | 1888 | { |
| 1889 | foreach_list(node, sh->ir) { |
| 1890 | ir_variable *const var = ((ir_instruction *) node)->as_variable(); |
| 1891 | |
Tapani Pälli | 33ee2c6 | 2013-12-12 13:51:01 +0200 | [diff] [blame] | 1892 | if ((var == NULL) || (var->data.mode != int(mode))) |
Ian Romanick | 40e114b | 2010-08-17 14:55:50 -0700 | [diff] [blame] | 1893 | continue; |
| 1894 | |
Ian Romanick | cc90e62 | 2010-10-19 17:59:10 -0700 | [diff] [blame] | 1895 | /* A shader 'in' or 'out' variable is only really an input or output if |
| 1896 | * its value is used by other shader stages. This will cause the variable |
| 1897 | * to have a location assigned. |
Ian Romanick | 40e114b | 2010-08-17 14:55:50 -0700 | [diff] [blame] | 1898 | */ |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 1899 | if (var->data.is_unmatched_generic_inout) { |
Tapani Pälli | 33ee2c6 | 2013-12-12 13:51:01 +0200 | [diff] [blame] | 1900 | var->data.mode = ir_var_auto; |
Ian Romanick | 40e114b | 2010-08-17 14:55:50 -0700 | [diff] [blame] | 1901 | } |
| 1902 | } |
| 1903 | } |
| 1904 | |
| 1905 | |
Paul Berry | 871ddb9 | 2011-11-05 11:17:32 -0700 | [diff] [blame] | 1906 | /** |
Marek Olšák | ec174a4 | 2011-11-18 15:00:10 +0100 | [diff] [blame] | 1907 | * Store the gl_FragDepth layout in the gl_shader_program struct. |
| 1908 | */ |
| 1909 | static void |
| 1910 | store_fragdepth_layout(struct gl_shader_program *prog) |
| 1911 | { |
| 1912 | if (prog->_LinkedShaders[MESA_SHADER_FRAGMENT] == NULL) { |
| 1913 | return; |
| 1914 | } |
| 1915 | |
| 1916 | struct exec_list *ir = prog->_LinkedShaders[MESA_SHADER_FRAGMENT]->ir; |
| 1917 | |
| 1918 | /* We don't look up the gl_FragDepth symbol directly because if |
| 1919 | * gl_FragDepth is not used in the shader, it's removed from the IR. |
| 1920 | * However, the symbol won't be removed from the symbol table. |
| 1921 | * |
| 1922 | * We're only interested in the cases where the variable is NOT removed |
| 1923 | * from the IR. |
| 1924 | */ |
| 1925 | foreach_list(node, ir) { |
| 1926 | ir_variable *const var = ((ir_instruction *) node)->as_variable(); |
| 1927 | |
Tapani Pälli | 33ee2c6 | 2013-12-12 13:51:01 +0200 | [diff] [blame] | 1928 | if (var == NULL || var->data.mode != ir_var_shader_out) { |
Marek Olšák | ec174a4 | 2011-11-18 15:00:10 +0100 | [diff] [blame] | 1929 | continue; |
| 1930 | } |
| 1931 | |
| 1932 | if (strcmp(var->name, "gl_FragDepth") == 0) { |
Tapani Pälli | 447bb90 | 2013-12-12 15:08:59 +0200 | [diff] [blame] | 1933 | switch (var->data.depth_layout) { |
Marek Olšák | ec174a4 | 2011-11-18 15:00:10 +0100 | [diff] [blame] | 1934 | case ir_depth_layout_none: |
| 1935 | prog->FragDepthLayout = FRAG_DEPTH_LAYOUT_NONE; |
| 1936 | return; |
| 1937 | case ir_depth_layout_any: |
| 1938 | prog->FragDepthLayout = FRAG_DEPTH_LAYOUT_ANY; |
| 1939 | return; |
| 1940 | case ir_depth_layout_greater: |
| 1941 | prog->FragDepthLayout = FRAG_DEPTH_LAYOUT_GREATER; |
| 1942 | return; |
| 1943 | case ir_depth_layout_less: |
| 1944 | prog->FragDepthLayout = FRAG_DEPTH_LAYOUT_LESS; |
| 1945 | return; |
| 1946 | case ir_depth_layout_unchanged: |
| 1947 | prog->FragDepthLayout = FRAG_DEPTH_LAYOUT_UNCHANGED; |
| 1948 | return; |
| 1949 | default: |
| 1950 | assert(0); |
| 1951 | return; |
| 1952 | } |
| 1953 | } |
| 1954 | } |
| 1955 | } |
| 1956 | |
| 1957 | /** |
Ian Romanick | 92f8159 | 2011-11-08 12:37:19 -0800 | [diff] [blame] | 1958 | * Validate the resources used by a program versus the implementation limits |
| 1959 | */ |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 1960 | static void |
Ian Romanick | 92f8159 | 2011-11-08 12:37:19 -0800 | [diff] [blame] | 1961 | check_resources(struct gl_context *ctx, struct gl_shader_program *prog) |
| 1962 | { |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 1963 | for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) { |
Ian Romanick | 92f8159 | 2011-11-08 12:37:19 -0800 | [diff] [blame] | 1964 | struct gl_shader *sh = prog->_LinkedShaders[i]; |
| 1965 | |
| 1966 | if (sh == NULL) |
| 1967 | continue; |
| 1968 | |
Paul Berry | bce8bc0 | 2014-01-08 10:17:01 -0800 | [diff] [blame] | 1969 | if (sh->num_samplers > ctx->Const.Program[i].MaxTextureImageUnits) { |
Ian Romanick | 92f8159 | 2011-11-08 12:37:19 -0800 | [diff] [blame] | 1970 | linker_error(prog, "Too many %s shader texture samplers", |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 1971 | _mesa_shader_stage_to_string(i)); |
Ian Romanick | 92f8159 | 2011-11-08 12:37:19 -0800 | [diff] [blame] | 1972 | } |
| 1973 | |
Paul Berry | bce8bc0 | 2014-01-08 10:17:01 -0800 | [diff] [blame] | 1974 | if (sh->num_uniform_components > |
| 1975 | ctx->Const.Program[i].MaxUniformComponents) { |
Eric Anholt | 38e77e5 | 2013-05-23 11:10:15 -0700 | [diff] [blame] | 1976 | if (ctx->Const.GLSLSkipStrictMaxUniformLimitCheck) { |
| 1977 | linker_warning(prog, "Too many %s shader default uniform block " |
| 1978 | "components, but the driver will try to optimize " |
| 1979 | "them out; this is non-portable out-of-spec " |
| 1980 | "behavior\n", |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 1981 | _mesa_shader_stage_to_string(i)); |
Eric Anholt | 38e77e5 | 2013-05-23 11:10:15 -0700 | [diff] [blame] | 1982 | } else { |
| 1983 | linker_error(prog, "Too many %s shader default uniform block " |
| 1984 | "components", |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 1985 | _mesa_shader_stage_to_string(i)); |
Eric Anholt | 38e77e5 | 2013-05-23 11:10:15 -0700 | [diff] [blame] | 1986 | } |
| 1987 | } |
| 1988 | |
| 1989 | if (sh->num_combined_uniform_components > |
Paul Berry | bce8bc0 | 2014-01-08 10:17:01 -0800 | [diff] [blame] | 1990 | ctx->Const.Program[i].MaxCombinedUniformComponents) { |
Marek Olšák | df809ae | 2011-12-10 04:14:46 +0100 | [diff] [blame] | 1991 | if (ctx->Const.GLSLSkipStrictMaxUniformLimitCheck) { |
| 1992 | linker_warning(prog, "Too many %s shader uniform components, " |
| 1993 | "but the driver will try to optimize them out; " |
| 1994 | "this is non-portable out-of-spec behavior\n", |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 1995 | _mesa_shader_stage_to_string(i)); |
Marek Olšák | df809ae | 2011-12-10 04:14:46 +0100 | [diff] [blame] | 1996 | } else { |
| 1997 | linker_error(prog, "Too many %s shader uniform components", |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 1998 | _mesa_shader_stage_to_string(i)); |
Marek Olšák | df809ae | 2011-12-10 04:14:46 +0100 | [diff] [blame] | 1999 | } |
Ian Romanick | 92f8159 | 2011-11-08 12:37:19 -0800 | [diff] [blame] | 2000 | } |
| 2001 | } |
| 2002 | |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 2003 | unsigned blocks[MESA_SHADER_STAGES] = {0}; |
Eric Anholt | 877a897 | 2012-06-25 12:47:01 -0700 | [diff] [blame] | 2004 | unsigned total_uniform_blocks = 0; |
| 2005 | |
| 2006 | for (unsigned i = 0; i < prog->NumUniformBlocks; i++) { |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 2007 | for (unsigned j = 0; j < MESA_SHADER_STAGES; j++) { |
Eric Anholt | 877a897 | 2012-06-25 12:47:01 -0700 | [diff] [blame] | 2008 | if (prog->UniformBlockStageIndex[j][i] != -1) { |
| 2009 | blocks[j]++; |
| 2010 | total_uniform_blocks++; |
| 2011 | } |
| 2012 | } |
| 2013 | |
| 2014 | if (total_uniform_blocks > ctx->Const.MaxCombinedUniformBlocks) { |
| 2015 | linker_error(prog, "Too many combined uniform blocks (%d/%d)", |
| 2016 | prog->NumUniformBlocks, |
| 2017 | ctx->Const.MaxCombinedUniformBlocks); |
| 2018 | } else { |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 2019 | for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) { |
Paul Berry | bce8bc0 | 2014-01-08 10:17:01 -0800 | [diff] [blame] | 2020 | const unsigned max_uniform_blocks = |
| 2021 | ctx->Const.Program[i].MaxUniformBlocks; |
| 2022 | if (blocks[i] > max_uniform_blocks) { |
Eric Anholt | 877a897 | 2012-06-25 12:47:01 -0700 | [diff] [blame] | 2023 | linker_error(prog, "Too many %s uniform blocks (%d/%d)", |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 2024 | _mesa_shader_stage_to_string(i), |
Eric Anholt | 877a897 | 2012-06-25 12:47:01 -0700 | [diff] [blame] | 2025 | blocks[i], |
Paul Berry | bce8bc0 | 2014-01-08 10:17:01 -0800 | [diff] [blame] | 2026 | max_uniform_blocks); |
Eric Anholt | 877a897 | 2012-06-25 12:47:01 -0700 | [diff] [blame] | 2027 | break; |
| 2028 | } |
| 2029 | } |
| 2030 | } |
| 2031 | } |
Ian Romanick | 92f8159 | 2011-11-08 12:37:19 -0800 | [diff] [blame] | 2032 | } |
Paul Berry | 871ddb9 | 2011-11-05 11:17:32 -0700 | [diff] [blame] | 2033 | |
Francisco Jerez | e51158f | 2013-11-22 15:53:26 -0800 | [diff] [blame] | 2034 | /** |
| 2035 | * Validate shader image resources. |
| 2036 | */ |
| 2037 | static void |
| 2038 | check_image_resources(struct gl_context *ctx, struct gl_shader_program *prog) |
| 2039 | { |
| 2040 | unsigned total_image_units = 0; |
| 2041 | unsigned fragment_outputs = 0; |
| 2042 | |
| 2043 | if (!ctx->Extensions.ARB_shader_image_load_store) |
| 2044 | return; |
| 2045 | |
| 2046 | for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) { |
| 2047 | struct gl_shader *sh = prog->_LinkedShaders[i]; |
| 2048 | |
| 2049 | if (sh) { |
| 2050 | if (sh->NumImages > ctx->Const.Program[i].MaxImageUniforms) |
| 2051 | linker_error(prog, "Too many %s shader image uniforms", |
| 2052 | _mesa_shader_stage_to_string(i)); |
| 2053 | |
| 2054 | total_image_units += sh->NumImages; |
| 2055 | |
| 2056 | if (i == MESA_SHADER_FRAGMENT) { |
| 2057 | foreach_list(node, sh->ir) { |
| 2058 | ir_variable *var = ((ir_instruction *)node)->as_variable(); |
| 2059 | if (var && var->data.mode == ir_var_shader_out) |
| 2060 | fragment_outputs += var->type->count_attribute_slots(); |
| 2061 | } |
| 2062 | } |
| 2063 | } |
| 2064 | } |
| 2065 | |
| 2066 | if (total_image_units > ctx->Const.MaxCombinedImageUniforms) |
| 2067 | linker_error(prog, "Too many combined image uniforms"); |
| 2068 | |
| 2069 | if (total_image_units + fragment_outputs > |
| 2070 | ctx->Const.MaxCombinedImageUnitsAndFragmentOutputs) |
| 2071 | linker_error(prog, "Too many combined image uniforms and fragment outputs"); |
| 2072 | } |
| 2073 | |
Ian Romanick | 0e59b26 | 2010-06-23 11:23:01 -0700 | [diff] [blame] | 2074 | void |
Kristian Høgsberg | f9995b3 | 2010-10-12 12:26:10 -0400 | [diff] [blame] | 2075 | link_shaders(struct gl_context *ctx, struct gl_shader_program *prog) |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 2076 | { |
Paul Berry | 871ddb9 | 2011-11-05 11:17:32 -0700 | [diff] [blame] | 2077 | tfeedback_decl *tfeedback_decls = NULL; |
| 2078 | unsigned num_tfeedback_decls = prog->TransformFeedback.NumVarying; |
| 2079 | |
Kenneth Graunke | d3073f5 | 2011-01-21 14:32:31 -0800 | [diff] [blame] | 2080 | void *mem_ctx = ralloc_context(NULL); // temporary linker context |
Kenneth Graunke | 2da02e7 | 2010-11-17 11:03:57 -0800 | [diff] [blame] | 2081 | |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 2082 | prog->LinkStatus = true; /* All error paths will set this to false */ |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 2083 | prog->Validated = false; |
| 2084 | prog->_Used = false; |
| 2085 | |
Eric Anholt | f609cf7 | 2012-04-27 13:52:56 -0700 | [diff] [blame] | 2086 | ralloc_free(prog->InfoLog); |
Kenneth Graunke | d3073f5 | 2011-01-21 14:32:31 -0800 | [diff] [blame] | 2087 | prog->InfoLog = ralloc_strdup(NULL, ""); |
Ian Romanick | f36460e | 2010-06-23 12:07:22 -0700 | [diff] [blame] | 2088 | |
Eric Anholt | f609cf7 | 2012-04-27 13:52:56 -0700 | [diff] [blame] | 2089 | ralloc_free(prog->UniformBlocks); |
| 2090 | prog->UniformBlocks = NULL; |
| 2091 | prog->NumUniformBlocks = 0; |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 2092 | for (int i = 0; i < MESA_SHADER_STAGES; i++) { |
Eric Anholt | f609cf7 | 2012-04-27 13:52:56 -0700 | [diff] [blame] | 2093 | ralloc_free(prog->UniformBlockStageIndex[i]); |
| 2094 | prog->UniformBlockStageIndex[i] = NULL; |
| 2095 | } |
| 2096 | |
Francisco Jerez | 5c11493 | 2013-09-11 12:14:46 -0700 | [diff] [blame] | 2097 | ralloc_free(prog->AtomicBuffers); |
| 2098 | prog->AtomicBuffers = NULL; |
| 2099 | prog->NumAtomicBuffers = 0; |
| 2100 | |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 2101 | /* Separate the shaders into groups based on their type. |
| 2102 | */ |
Paul Berry | cd18ba1 | 2014-01-07 08:56:57 -0800 | [diff] [blame] | 2103 | struct gl_shader **shader_list[MESA_SHADER_STAGES]; |
| 2104 | unsigned num_shaders[MESA_SHADER_STAGES]; |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 2105 | |
Paul Berry | cd18ba1 | 2014-01-07 08:56:57 -0800 | [diff] [blame] | 2106 | for (int i = 0; i < MESA_SHADER_STAGES; i++) { |
| 2107 | shader_list[i] = (struct gl_shader **) |
| 2108 | calloc(prog->NumShaders, sizeof(struct gl_shader *)); |
| 2109 | num_shaders[i] = 0; |
| 2110 | } |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 2111 | |
Ian Romanick | 25f51d3 | 2010-07-16 15:51:50 -0700 | [diff] [blame] | 2112 | unsigned min_version = UINT_MAX; |
| 2113 | unsigned max_version = 0; |
Paul Berry | a9f34dc | 2012-08-02 17:49:44 -0700 | [diff] [blame] | 2114 | const bool is_es_prog = |
| 2115 | (prog->NumShaders > 0 && prog->Shaders[0]->IsES) ? true : false; |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 2116 | for (unsigned i = 0; i < prog->NumShaders; i++) { |
Ian Romanick | 25f51d3 | 2010-07-16 15:51:50 -0700 | [diff] [blame] | 2117 | min_version = MIN2(min_version, prog->Shaders[i]->Version); |
| 2118 | max_version = MAX2(max_version, prog->Shaders[i]->Version); |
| 2119 | |
Paul Berry | a9f34dc | 2012-08-02 17:49:44 -0700 | [diff] [blame] | 2120 | if (prog->Shaders[i]->IsES != is_es_prog) { |
| 2121 | linker_error(prog, "all shaders must use same shading " |
| 2122 | "language version\n"); |
| 2123 | goto done; |
| 2124 | } |
| 2125 | |
Paul Berry | cd18ba1 | 2014-01-07 08:56:57 -0800 | [diff] [blame] | 2126 | gl_shader_stage shader_type = prog->Shaders[i]->Stage; |
| 2127 | shader_list[shader_type][num_shaders[shader_type]] = prog->Shaders[i]; |
| 2128 | num_shaders[shader_type]++; |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 2129 | } |
| 2130 | |
Paul Berry | 672fab0 | 2013-10-13 18:01:11 -0700 | [diff] [blame] | 2131 | /* In desktop GLSL, different shader versions may be linked together. In |
| 2132 | * GLSL ES, all shader versions must be the same. |
Ian Romanick | 25f51d3 | 2010-07-16 15:51:50 -0700 | [diff] [blame] | 2133 | */ |
Paul Berry | 672fab0 | 2013-10-13 18:01:11 -0700 | [diff] [blame] | 2134 | if (is_es_prog && min_version != max_version) { |
Ian Romanick | 586e741 | 2011-07-28 14:04:09 -0700 | [diff] [blame] | 2135 | linker_error(prog, "all shaders must use same shading " |
| 2136 | "language version\n"); |
Ian Romanick | 25f51d3 | 2010-07-16 15:51:50 -0700 | [diff] [blame] | 2137 | goto done; |
| 2138 | } |
| 2139 | |
| 2140 | prog->Version = max_version; |
Paul Berry | 91c92bb | 2012-08-02 17:50:43 -0700 | [diff] [blame] | 2141 | prog->IsES = is_es_prog; |
Ian Romanick | 25f51d3 | 2010-07-16 15:51:50 -0700 | [diff] [blame] | 2142 | |
Fabian Bieler | bd85ba0 | 2013-05-24 23:26:54 +0200 | [diff] [blame] | 2143 | /* Geometry shaders have to be linked with vertex shaders. |
| 2144 | */ |
Paul Berry | cd18ba1 | 2014-01-07 08:56:57 -0800 | [diff] [blame] | 2145 | if (num_shaders[MESA_SHADER_GEOMETRY] > 0 && |
| 2146 | num_shaders[MESA_SHADER_VERTEX] == 0) { |
Fabian Bieler | bd85ba0 | 2013-05-24 23:26:54 +0200 | [diff] [blame] | 2147 | linker_error(prog, "Geometry shader must be linked with " |
| 2148 | "vertex shader\n"); |
| 2149 | goto done; |
| 2150 | } |
| 2151 | |
Paul Berry | 1fe274b | 2014-01-08 11:40:23 -0800 | [diff] [blame] | 2152 | /* Compute shaders have additional restrictions. */ |
| 2153 | if (num_shaders[MESA_SHADER_COMPUTE] > 0 && |
| 2154 | num_shaders[MESA_SHADER_COMPUTE] != prog->NumShaders) { |
| 2155 | linker_error(prog, "Compute shaders may not be linked with any other " |
| 2156 | "type of shader\n"); |
| 2157 | } |
| 2158 | |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 2159 | for (unsigned int i = 0; i < MESA_SHADER_STAGES; i++) { |
Ian Romanick | 3322fba | 2010-10-14 13:28:42 -0700 | [diff] [blame] | 2160 | if (prog->_LinkedShaders[i] != NULL) |
| 2161 | ctx->Driver.DeleteShader(ctx, prog->_LinkedShaders[i]); |
| 2162 | |
| 2163 | prog->_LinkedShaders[i] = NULL; |
Eric Anholt | 5d0f430 | 2010-08-18 12:02:35 -0700 | [diff] [blame] | 2164 | } |
| 2165 | |
Ian Romanick | cd6764e | 2010-07-16 16:00:07 -0700 | [diff] [blame] | 2166 | /* Link all shaders for a particular stage and validate the result. |
| 2167 | */ |
Paul Berry | cd18ba1 | 2014-01-07 08:56:57 -0800 | [diff] [blame] | 2168 | for (int stage = 0; stage < MESA_SHADER_STAGES; stage++) { |
| 2169 | if (num_shaders[stage] > 0) { |
| 2170 | gl_shader *const sh = |
| 2171 | link_intrastage_shaders(mem_ctx, ctx, prog, shader_list[stage], |
| 2172 | num_shaders[stage]); |
Ian Romanick | 3fb8787 | 2010-07-09 14:09:34 -0700 | [diff] [blame] | 2173 | |
Paul Berry | cd18ba1 | 2014-01-07 08:56:57 -0800 | [diff] [blame] | 2174 | if (!prog->LinkStatus) |
| 2175 | goto done; |
Ian Romanick | 3fb8787 | 2010-07-09 14:09:34 -0700 | [diff] [blame] | 2176 | |
Paul Berry | cd18ba1 | 2014-01-07 08:56:57 -0800 | [diff] [blame] | 2177 | switch (stage) { |
| 2178 | case MESA_SHADER_VERTEX: |
| 2179 | validate_vertex_shader_executable(prog, sh); |
| 2180 | break; |
| 2181 | case MESA_SHADER_GEOMETRY: |
| 2182 | validate_geometry_shader_executable(prog, sh); |
| 2183 | break; |
| 2184 | case MESA_SHADER_FRAGMENT: |
| 2185 | validate_fragment_shader_executable(prog, sh); |
| 2186 | break; |
| 2187 | } |
| 2188 | if (!prog->LinkStatus) |
| 2189 | goto done; |
Ian Romanick | 3fb8787 | 2010-07-09 14:09:34 -0700 | [diff] [blame] | 2190 | |
Paul Berry | cd18ba1 | 2014-01-07 08:56:57 -0800 | [diff] [blame] | 2191 | _mesa_reference_shader(ctx, &prog->_LinkedShaders[stage], sh); |
| 2192 | } |
Ian Romanick | cc22c5a | 2010-06-18 17:13:42 -0700 | [diff] [blame] | 2193 | } |
| 2194 | |
Paul Berry | cd18ba1 | 2014-01-07 08:56:57 -0800 | [diff] [blame] | 2195 | if (num_shaders[MESA_SHADER_GEOMETRY] > 0) |
Paul Berry | 44b7ebe | 2013-10-23 12:55:24 -0700 | [diff] [blame] | 2196 | prog->LastClipDistanceArraySize = prog->Geom.ClipDistanceArraySize; |
Paul Berry | cd18ba1 | 2014-01-07 08:56:57 -0800 | [diff] [blame] | 2197 | else if (num_shaders[MESA_SHADER_VERTEX] > 0) |
| 2198 | prog->LastClipDistanceArraySize = prog->Vert.ClipDistanceArraySize; |
| 2199 | else |
| 2200 | prog->LastClipDistanceArraySize = 0; /* Not used */ |
Bryan Cain | 2548092 | 2013-02-15 09:46:50 -0600 | [diff] [blame] | 2201 | |
Ian Romanick | 3ed850e | 2010-06-23 12:18:21 -0700 | [diff] [blame] | 2202 | /* Here begins the inter-stage linking phase. Some initial validation is |
| 2203 | * performed, then locations are assigned for uniforms, attributes, and |
| 2204 | * varyings. |
| 2205 | */ |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 2206 | cross_validate_uniforms(prog); |
| 2207 | if (!prog->LinkStatus) |
| 2208 | goto done; |
Ian Romanick | 3322fba | 2010-10-14 13:28:42 -0700 | [diff] [blame] | 2209 | |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 2210 | unsigned prev; |
Ian Romanick | 3322fba | 2010-10-14 13:28:42 -0700 | [diff] [blame] | 2211 | |
Paul Berry | 28e526d | 2014-01-06 19:47:25 -0800 | [diff] [blame] | 2212 | for (prev = 0; prev <= MESA_SHADER_FRAGMENT; prev++) { |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 2213 | if (prog->_LinkedShaders[prev] != NULL) |
| 2214 | break; |
| 2215 | } |
Ian Romanick | 3322fba | 2010-10-14 13:28:42 -0700 | [diff] [blame] | 2216 | |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 2217 | /* Validate the inputs of each stage with the output of the preceding |
| 2218 | * stage. |
| 2219 | */ |
Paul Berry | 28e526d | 2014-01-06 19:47:25 -0800 | [diff] [blame] | 2220 | for (unsigned i = prev + 1; i <= MESA_SHADER_FRAGMENT; i++) { |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 2221 | if (prog->_LinkedShaders[i] == NULL) |
| 2222 | continue; |
Kenneth Graunke | 3ddfccb | 2013-05-20 23:46:16 -0700 | [diff] [blame] | 2223 | |
Paul Berry | 544e312 | 2013-11-15 14:23:45 -0800 | [diff] [blame] | 2224 | validate_interstage_inout_blocks(prog, prog->_LinkedShaders[prev], |
| 2225 | prog->_LinkedShaders[i]); |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 2226 | if (!prog->LinkStatus) |
| 2227 | goto done; |
Ian Romanick | 3322fba | 2010-10-14 13:28:42 -0700 | [diff] [blame] | 2228 | |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 2229 | cross_validate_outputs_to_inputs(prog, |
| 2230 | prog->_LinkedShaders[prev], |
| 2231 | prog->_LinkedShaders[i]); |
| 2232 | if (!prog->LinkStatus) |
| 2233 | goto done; |
Ian Romanick | 3710192 | 2010-06-18 19:02:10 -0700 | [diff] [blame] | 2234 | |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 2235 | prev = i; |
Ian Romanick | 3710192 | 2010-06-18 19:02:10 -0700 | [diff] [blame] | 2236 | } |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 2237 | |
Paul Berry | 544e312 | 2013-11-15 14:23:45 -0800 | [diff] [blame] | 2238 | /* Cross-validate uniform blocks between shader stages */ |
| 2239 | validate_interstage_uniform_blocks(prog, prog->_LinkedShaders, |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 2240 | MESA_SHADER_STAGES); |
Paul Berry | 544e312 | 2013-11-15 14:23:45 -0800 | [diff] [blame] | 2241 | if (!prog->LinkStatus) |
| 2242 | goto done; |
Jordan Justen | 5ebf547 | 2013-03-10 03:20:03 -0700 | [diff] [blame] | 2243 | |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 2244 | for (unsigned int i = 0; i < MESA_SHADER_STAGES; i++) { |
Jordan Justen | 5ebf547 | 2013-03-10 03:20:03 -0700 | [diff] [blame] | 2245 | if (prog->_LinkedShaders[i] != NULL) |
| 2246 | lower_named_interface_blocks(mem_ctx, prog->_LinkedShaders[i]); |
| 2247 | } |
| 2248 | |
Eric Anholt | 3de1395 | 2012-05-04 13:08:46 -0700 | [diff] [blame] | 2249 | /* Implement the GLSL 1.30+ rule for discard vs infinite loops Do |
| 2250 | * it before optimization because we want most of the checks to get |
| 2251 | * dropped thanks to constant propagation. |
Paul Berry | 15ba2a5 | 2012-08-02 17:51:02 -0700 | [diff] [blame] | 2252 | * |
| 2253 | * This rule also applies to GLSL ES 3.00. |
Eric Anholt | 3de1395 | 2012-05-04 13:08:46 -0700 | [diff] [blame] | 2254 | */ |
Paul Berry | 15ba2a5 | 2012-08-02 17:51:02 -0700 | [diff] [blame] | 2255 | if (max_version >= (is_es_prog ? 300 : 130)) { |
Eric Anholt | 3de1395 | 2012-05-04 13:08:46 -0700 | [diff] [blame] | 2256 | struct gl_shader *sh = prog->_LinkedShaders[MESA_SHADER_FRAGMENT]; |
| 2257 | if (sh) { |
| 2258 | lower_discard_flow(sh->ir); |
| 2259 | } |
| 2260 | } |
| 2261 | |
Eric Anholt | f609cf7 | 2012-04-27 13:52:56 -0700 | [diff] [blame] | 2262 | if (!interstage_cross_validate_uniform_blocks(prog)) |
| 2263 | goto done; |
| 2264 | |
Eric Anholt | 2f4fe15 | 2010-08-10 13:06:49 -0700 | [diff] [blame] | 2265 | /* Do common optimization before assigning storage for attributes, |
| 2266 | * uniforms, and varyings. Later optimization could possibly make |
| 2267 | * some of that unused. |
| 2268 | */ |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 2269 | for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) { |
Ian Romanick | 3322fba | 2010-10-14 13:28:42 -0700 | [diff] [blame] | 2270 | if (prog->_LinkedShaders[i] == NULL) |
| 2271 | continue; |
| 2272 | |
Ian Romanick | 02c5ae1 | 2011-07-11 10:46:01 -0700 | [diff] [blame] | 2273 | detect_recursion_linked(prog, prog->_LinkedShaders[i]->ir); |
| 2274 | if (!prog->LinkStatus) |
| 2275 | goto done; |
| 2276 | |
Paul Berry | 1839244 | 2012-12-04 11:11:02 -0800 | [diff] [blame] | 2277 | if (ctx->ShaderCompilerOptions[i].LowerClipDistance) { |
| 2278 | lower_clip_distance(prog->_LinkedShaders[i]); |
| 2279 | } |
Paul Berry | c06e325 | 2011-08-11 20:58:21 -0700 | [diff] [blame] | 2280 | |
Brian Paul | 7feabfe | 2012-03-20 17:43:12 -0600 | [diff] [blame] | 2281 | unsigned max_unroll = ctx->ShaderCompilerOptions[i].MaxUnrollIterations; |
| 2282 | |
Kenneth Graunke | b765740 | 2013-04-17 17:30:22 -0700 | [diff] [blame] | 2283 | while (do_common_optimization(prog->_LinkedShaders[i]->ir, true, false, max_unroll, &ctx->ShaderCompilerOptions[i])) |
Eric Anholt | 2f4fe15 | 2010-08-10 13:06:49 -0700 | [diff] [blame] | 2284 | ; |
Ian Romanick | a7ba9a7 | 2010-07-20 13:36:32 -0700 | [diff] [blame] | 2285 | } |
Ian Romanick | 13e10e4 | 2010-06-21 12:03:24 -0700 | [diff] [blame] | 2286 | |
Paul Berry | 50895d4 | 2012-12-05 07:17:07 -0800 | [diff] [blame] | 2287 | /* Mark all generic shader inputs and outputs as unpaired. */ |
| 2288 | if (prog->_LinkedShaders[MESA_SHADER_VERTEX] != NULL) { |
| 2289 | link_invalidate_variable_locations( |
Ian Romanick | 63974c0 | 2013-10-04 10:46:29 -0700 | [diff] [blame] | 2290 | prog->_LinkedShaders[MESA_SHADER_VERTEX]->ir); |
Paul Berry | 50895d4 | 2012-12-05 07:17:07 -0800 | [diff] [blame] | 2291 | } |
Bryan Cain | 2548092 | 2013-02-15 09:46:50 -0600 | [diff] [blame] | 2292 | if (prog->_LinkedShaders[MESA_SHADER_GEOMETRY] != NULL) { |
| 2293 | link_invalidate_variable_locations( |
Ian Romanick | 63974c0 | 2013-10-04 10:46:29 -0700 | [diff] [blame] | 2294 | prog->_LinkedShaders[MESA_SHADER_GEOMETRY]->ir); |
Bryan Cain | 2548092 | 2013-02-15 09:46:50 -0600 | [diff] [blame] | 2295 | } |
Paul Berry | 50895d4 | 2012-12-05 07:17:07 -0800 | [diff] [blame] | 2296 | if (prog->_LinkedShaders[MESA_SHADER_FRAGMENT] != NULL) { |
| 2297 | link_invalidate_variable_locations( |
Ian Romanick | 63974c0 | 2013-10-04 10:46:29 -0700 | [diff] [blame] | 2298 | prog->_LinkedShaders[MESA_SHADER_FRAGMENT]->ir); |
Paul Berry | 50895d4 | 2012-12-05 07:17:07 -0800 | [diff] [blame] | 2299 | } |
| 2300 | |
Ian Romanick | d32d4f7 | 2011-06-27 17:59:58 -0700 | [diff] [blame] | 2301 | /* FINISHME: The value of the max_attribute_index parameter is |
| 2302 | * FINISHME: implementation dependent based on the value of |
| 2303 | * FINISHME: GL_MAX_VERTEX_ATTRIBS. GL_MAX_VERTEX_ATTRIBS must be |
| 2304 | * FINISHME: at least 16, so hardcode 16 for now. |
| 2305 | */ |
| 2306 | if (!assign_attribute_or_color_locations(prog, MESA_SHADER_VERTEX, 16)) { |
Ian Romanick | d32d4f7 | 2011-06-27 17:59:58 -0700 | [diff] [blame] | 2307 | goto done; |
| 2308 | } |
| 2309 | |
Dave Airlie | 1256a5d | 2012-03-24 13:33:41 +0000 | [diff] [blame] | 2310 | if (!assign_attribute_or_color_locations(prog, MESA_SHADER_FRAGMENT, MAX2(ctx->Const.MaxDrawBuffers, ctx->Const.MaxDualSourceDrawBuffers))) { |
Ian Romanick | d32d4f7 | 2011-06-27 17:59:58 -0700 | [diff] [blame] | 2311 | goto done; |
Ian Romanick | 40e114b | 2010-08-17 14:55:50 -0700 | [diff] [blame] | 2312 | } |
| 2313 | |
Marek Olšák | 284d954 | 2013-06-12 02:18:09 +0200 | [diff] [blame] | 2314 | unsigned first; |
Paul Berry | 28e526d | 2014-01-06 19:47:25 -0800 | [diff] [blame] | 2315 | for (first = 0; first <= MESA_SHADER_FRAGMENT; first++) { |
Marek Olšák | 284d954 | 2013-06-12 02:18:09 +0200 | [diff] [blame] | 2316 | if (prog->_LinkedShaders[first] != NULL) |
Ian Romanick | 3322fba | 2010-10-14 13:28:42 -0700 | [diff] [blame] | 2317 | break; |
| 2318 | } |
| 2319 | |
Paul Berry | 871ddb9 | 2011-11-05 11:17:32 -0700 | [diff] [blame] | 2320 | if (num_tfeedback_decls != 0) { |
| 2321 | /* From GL_EXT_transform_feedback: |
| 2322 | * A program will fail to link if: |
| 2323 | * |
| 2324 | * * the <count> specified by TransformFeedbackVaryingsEXT is |
| 2325 | * non-zero, but the program object has no vertex or geometry |
| 2326 | * shader; |
| 2327 | */ |
Bryan Cain | 2548092 | 2013-02-15 09:46:50 -0600 | [diff] [blame] | 2328 | if (first == MESA_SHADER_FRAGMENT) { |
Paul Berry | 871ddb9 | 2011-11-05 11:17:32 -0700 | [diff] [blame] | 2329 | linker_error(prog, "Transform feedback varyings specified, but " |
| 2330 | "no vertex or geometry shader is present."); |
| 2331 | goto done; |
| 2332 | } |
| 2333 | |
| 2334 | tfeedback_decls = ralloc_array(mem_ctx, tfeedback_decl, |
| 2335 | prog->TransformFeedback.NumVarying); |
Paul Berry | 456279b | 2011-12-26 19:39:25 -0800 | [diff] [blame] | 2336 | if (!parse_tfeedback_decls(ctx, prog, mem_ctx, num_tfeedback_decls, |
Paul Berry | 871ddb9 | 2011-11-05 11:17:32 -0700 | [diff] [blame] | 2337 | prog->TransformFeedback.VaryingNames, |
| 2338 | tfeedback_decls)) |
| 2339 | goto done; |
| 2340 | } |
| 2341 | |
Marek Olšák | 284d954 | 2013-06-12 02:18:09 +0200 | [diff] [blame] | 2342 | /* Linking the stages in the opposite order (from fragment to vertex) |
| 2343 | * ensures that inter-shader outputs written to in an earlier stage are |
| 2344 | * eliminated if they are (transitively) not used in a later stage. |
| 2345 | */ |
| 2346 | int last, next; |
Paul Berry | 28e526d | 2014-01-06 19:47:25 -0800 | [diff] [blame] | 2347 | for (last = MESA_SHADER_FRAGMENT; last >= 0; last--) { |
Marek Olšák | 284d954 | 2013-06-12 02:18:09 +0200 | [diff] [blame] | 2348 | if (prog->_LinkedShaders[last] != NULL) |
| 2349 | break; |
Ian Romanick | 3322fba | 2010-10-14 13:28:42 -0700 | [diff] [blame] | 2350 | } |
Ian Romanick | 13e10e4 | 2010-06-21 12:03:24 -0700 | [diff] [blame] | 2351 | |
Marek Olšák | 284d954 | 2013-06-12 02:18:09 +0200 | [diff] [blame] | 2352 | if (last >= 0 && last < MESA_SHADER_FRAGMENT) { |
| 2353 | gl_shader *const sh = prog->_LinkedShaders[last]; |
| 2354 | |
| 2355 | if (num_tfeedback_decls != 0) { |
| 2356 | /* There was no fragment shader, but we still have to assign varying |
| 2357 | * locations for use by transform feedback. |
| 2358 | */ |
| 2359 | if (!assign_varying_locations(ctx, mem_ctx, prog, |
| 2360 | sh, NULL, |
Paul Berry | 3b0cf70 | 2013-04-10 06:48:42 -0700 | [diff] [blame] | 2361 | num_tfeedback_decls, tfeedback_decls, |
| 2362 | 0)) |
Marek Olšák | 284d954 | 2013-06-12 02:18:09 +0200 | [diff] [blame] | 2363 | goto done; |
| 2364 | } |
| 2365 | |
Marek Olšák | d13003f | 2013-08-09 22:34:45 +0200 | [diff] [blame] | 2366 | do_dead_builtin_varyings(ctx, sh, NULL, |
Marek Olšák | b3d8b4c | 2013-06-12 13:23:48 +0200 | [diff] [blame] | 2367 | num_tfeedback_decls, tfeedback_decls); |
| 2368 | |
Marek Olšák | 284d954 | 2013-06-12 02:18:09 +0200 | [diff] [blame] | 2369 | demote_shader_inputs_and_outputs(sh, ir_var_shader_out); |
| 2370 | |
| 2371 | /* Eliminate code that is now dead due to unused outputs being demoted. |
Paul Berry | 871ddb9 | 2011-11-05 11:17:32 -0700 | [diff] [blame] | 2372 | */ |
Marek Olšák | 284d954 | 2013-06-12 02:18:09 +0200 | [diff] [blame] | 2373 | while (do_dead_code(sh->ir, false)) |
| 2374 | ; |
| 2375 | } |
| 2376 | else if (first == MESA_SHADER_FRAGMENT) { |
Marek Olšák | b3d8b4c | 2013-06-12 13:23:48 +0200 | [diff] [blame] | 2377 | /* If the program only contains a fragment shader... |
Marek Olšák | 284d954 | 2013-06-12 02:18:09 +0200 | [diff] [blame] | 2378 | */ |
| 2379 | gl_shader *const sh = prog->_LinkedShaders[first]; |
| 2380 | |
Marek Olšák | d13003f | 2013-08-09 22:34:45 +0200 | [diff] [blame] | 2381 | do_dead_builtin_varyings(ctx, NULL, sh, |
Marek Olšák | b3d8b4c | 2013-06-12 13:23:48 +0200 | [diff] [blame] | 2382 | num_tfeedback_decls, tfeedback_decls); |
| 2383 | |
Marek Olšák | 284d954 | 2013-06-12 02:18:09 +0200 | [diff] [blame] | 2384 | demote_shader_inputs_and_outputs(sh, ir_var_shader_in); |
| 2385 | |
| 2386 | while (do_dead_code(sh->ir, false)) |
| 2387 | ; |
| 2388 | } |
| 2389 | |
| 2390 | next = last; |
| 2391 | for (int i = next - 1; i >= 0; i--) { |
| 2392 | if (prog->_LinkedShaders[i] == NULL) |
| 2393 | continue; |
| 2394 | |
| 2395 | gl_shader *const sh_i = prog->_LinkedShaders[i]; |
| 2396 | gl_shader *const sh_next = prog->_LinkedShaders[next]; |
Paul Berry | 3b0cf70 | 2013-04-10 06:48:42 -0700 | [diff] [blame] | 2397 | unsigned gs_input_vertices = |
| 2398 | next == MESA_SHADER_GEOMETRY ? prog->Geom.VerticesIn : 0; |
Marek Olšák | 284d954 | 2013-06-12 02:18:09 +0200 | [diff] [blame] | 2399 | |
| 2400 | if (!assign_varying_locations(ctx, mem_ctx, prog, sh_i, sh_next, |
| 2401 | next == MESA_SHADER_FRAGMENT ? num_tfeedback_decls : 0, |
Paul Berry | 3b0cf70 | 2013-04-10 06:48:42 -0700 | [diff] [blame] | 2402 | tfeedback_decls, gs_input_vertices)) |
Paul Berry | 871ddb9 | 2011-11-05 11:17:32 -0700 | [diff] [blame] | 2403 | goto done; |
Marek Olšák | 284d954 | 2013-06-12 02:18:09 +0200 | [diff] [blame] | 2404 | |
Marek Olšák | d13003f | 2013-08-09 22:34:45 +0200 | [diff] [blame] | 2405 | do_dead_builtin_varyings(ctx, sh_i, sh_next, |
Marek Olšák | b3d8b4c | 2013-06-12 13:23:48 +0200 | [diff] [blame] | 2406 | next == MESA_SHADER_FRAGMENT ? num_tfeedback_decls : 0, |
| 2407 | tfeedback_decls); |
| 2408 | |
Marek Olšák | 284d954 | 2013-06-12 02:18:09 +0200 | [diff] [blame] | 2409 | demote_shader_inputs_and_outputs(sh_i, ir_var_shader_out); |
| 2410 | demote_shader_inputs_and_outputs(sh_next, ir_var_shader_in); |
| 2411 | |
| 2412 | /* Eliminate code that is now dead due to unused outputs being demoted. |
| 2413 | */ |
| 2414 | while (do_dead_code(sh_i->ir, false)) |
| 2415 | ; |
| 2416 | while (do_dead_code(sh_next->ir, false)) |
| 2417 | ; |
| 2418 | |
Marek Olšák | 3c55582 | 2013-06-13 03:17:22 +0200 | [diff] [blame] | 2419 | /* This must be done after all dead varyings are eliminated. */ |
Ian Romanick | 42305fb | 2013-09-10 12:00:34 -0500 | [diff] [blame] | 2420 | if (!check_against_output_limit(ctx, prog, sh_i)) |
| 2421 | goto done; |
| 2422 | if (!check_against_input_limit(ctx, prog, sh_next)) |
Marek Olšák | 3c55582 | 2013-06-13 03:17:22 +0200 | [diff] [blame] | 2423 | goto done; |
| 2424 | |
Marek Olšák | 284d954 | 2013-06-12 02:18:09 +0200 | [diff] [blame] | 2425 | next = i; |
Paul Berry | 871ddb9 | 2011-11-05 11:17:32 -0700 | [diff] [blame] | 2426 | } |
| 2427 | |
| 2428 | if (!store_tfeedback_info(ctx, prog, num_tfeedback_decls, tfeedback_decls)) |
| 2429 | goto done; |
| 2430 | |
Ian Romanick | 960d722 | 2011-10-21 11:21:02 -0700 | [diff] [blame] | 2431 | update_array_sizes(prog); |
Ian Romanick | 7199096 | 2011-10-18 16:01:49 -0700 | [diff] [blame] | 2432 | link_assign_uniform_locations(prog); |
Francisco Jerez | 5c11493 | 2013-09-11 12:14:46 -0700 | [diff] [blame] | 2433 | link_assign_atomic_counter_resources(ctx, prog); |
Marek Olšák | ec174a4 | 2011-11-18 15:00:10 +0100 | [diff] [blame] | 2434 | store_fragdepth_layout(prog); |
Ian Romanick | 960d722 | 2011-10-21 11:21:02 -0700 | [diff] [blame] | 2435 | |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 2436 | check_resources(ctx, prog); |
Francisco Jerez | e51158f | 2013-11-22 15:53:26 -0800 | [diff] [blame] | 2437 | check_image_resources(ctx, prog); |
Francisco Jerez | 5c11493 | 2013-09-11 12:14:46 -0700 | [diff] [blame] | 2438 | link_check_atomic_counter_resources(ctx, prog); |
| 2439 | |
Paul Berry | b95d237 | 2013-07-27 11:08:31 -0700 | [diff] [blame] | 2440 | if (!prog->LinkStatus) |
Ian Romanick | 92f8159 | 2011-11-08 12:37:19 -0800 | [diff] [blame] | 2441 | goto done; |
| 2442 | |
Ian Romanick | ce9171f | 2011-02-03 17:10:14 -0800 | [diff] [blame] | 2443 | /* OpenGL ES requires that a vertex shader and a fragment shader both be |
Anuj Phogat | 03597cf | 2013-12-19 14:17:19 -0800 | [diff] [blame^] | 2444 | * present in a linked program. GL_ARB_ES2_compatibility doesn't say |
| 2445 | * anything about shader linking when one of the shaders (vertex or |
| 2446 | * fragment shader) is absent. So, the extension shouldn't change the |
| 2447 | * behavior specified in GLSL specification. |
Ian Romanick | ce9171f | 2011-02-03 17:10:14 -0800 | [diff] [blame] | 2448 | */ |
Anuj Phogat | 03597cf | 2013-12-19 14:17:19 -0800 | [diff] [blame^] | 2449 | if (!prog->InternalSeparateShader && ctx->API == API_OPENGLES2) { |
Ian Romanick | ce9171f | 2011-02-03 17:10:14 -0800 | [diff] [blame] | 2450 | if (prog->_LinkedShaders[MESA_SHADER_VERTEX] == NULL) { |
Ian Romanick | 586e741 | 2011-07-28 14:04:09 -0700 | [diff] [blame] | 2451 | linker_error(prog, "program lacks a vertex shader\n"); |
Ian Romanick | ce9171f | 2011-02-03 17:10:14 -0800 | [diff] [blame] | 2452 | } else if (prog->_LinkedShaders[MESA_SHADER_FRAGMENT] == NULL) { |
Ian Romanick | 586e741 | 2011-07-28 14:04:09 -0700 | [diff] [blame] | 2453 | linker_error(prog, "program lacks a fragment shader\n"); |
Ian Romanick | ce9171f | 2011-02-03 17:10:14 -0800 | [diff] [blame] | 2454 | } |
| 2455 | } |
| 2456 | |
Ian Romanick | 13e10e4 | 2010-06-21 12:03:24 -0700 | [diff] [blame] | 2457 | /* FINISHME: Assign fragment shader output locations. */ |
| 2458 | |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 2459 | done: |
Paul Berry | 665b8d7 | 2014-01-07 10:11:39 -0800 | [diff] [blame] | 2460 | for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) { |
Paul Berry | cd18ba1 | 2014-01-07 08:56:57 -0800 | [diff] [blame] | 2461 | free(shader_list[i]); |
Kenneth Graunke | 2da02e7 | 2010-11-17 11:03:57 -0800 | [diff] [blame] | 2462 | if (prog->_LinkedShaders[i] == NULL) |
| 2463 | continue; |
| 2464 | |
Paul Berry | d7fa9eb | 2013-11-22 12:37:22 -0800 | [diff] [blame] | 2465 | /* Do a final validation step to make sure that the IR wasn't |
| 2466 | * invalidated by any modifications performed after intrastage linking. |
| 2467 | */ |
| 2468 | validate_ir_tree(prog->_LinkedShaders[i]->ir); |
| 2469 | |
Kenneth Graunke | 2da02e7 | 2010-11-17 11:03:57 -0800 | [diff] [blame] | 2470 | /* Retain any live IR, but trash the rest. */ |
| 2471 | reparent_ir(prog->_LinkedShaders[i]->ir, prog->_LinkedShaders[i]->ir); |
Ian Romanick | 7bbcc0b | 2011-09-30 14:21:10 -0700 | [diff] [blame] | 2472 | |
| 2473 | /* The symbol table in the linked shaders may contain references to |
| 2474 | * variables that were removed (e.g., unused uniforms). Since it may |
| 2475 | * contain junk, there is no possible valid use. Delete it and set the |
| 2476 | * pointer to NULL. |
| 2477 | */ |
| 2478 | delete prog->_LinkedShaders[i]->symbols; |
| 2479 | prog->_LinkedShaders[i]->symbols = NULL; |
Kenneth Graunke | 2da02e7 | 2010-11-17 11:03:57 -0800 | [diff] [blame] | 2480 | } |
| 2481 | |
Kenneth Graunke | d3073f5 | 2011-01-21 14:32:31 -0800 | [diff] [blame] | 2482 | ralloc_free(mem_ctx); |
Ian Romanick | 832dfa5 | 2010-06-17 15:04:20 -0700 | [diff] [blame] | 2483 | } |