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