Merge remote-tracking branch 'mesa-public/master' into vulkan
[mesa.git] / src / glsl / lower_ubo_reference.cpp
1 /*
2 * Copyright © 2012 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 lower_ubo_reference.cpp
26 *
27 * IR lower pass to replace dereferences of variables in a uniform
28 * buffer object with usage of ir_binop_ubo_load expressions, each of
29 * which can read data up to the size of a vec4.
30 *
31 * This relieves drivers of the responsibility to deal with tricky UBO
32 * layout issues like std140 structures and row_major matrices on
33 * their own.
34 */
35
36 #include "ir.h"
37 #include "ir_builder.h"
38 #include "ir_rvalue_visitor.h"
39 #include "main/macros.h"
40 #include "glsl_parser_extras.h"
41
42 using namespace ir_builder;
43
44 /**
45 * Determine if a thing being dereferenced is row-major
46 *
47 * There is some trickery here.
48 *
49 * If the thing being dereferenced is a member of uniform block \b without an
50 * instance name, then the name of the \c ir_variable is the field name of an
51 * interface type. If this field is row-major, then the thing referenced is
52 * row-major.
53 *
54 * If the thing being dereferenced is a member of uniform block \b with an
55 * instance name, then the last dereference in the tree will be an
56 * \c ir_dereference_record. If that record field is row-major, then the
57 * thing referenced is row-major.
58 */
59 static bool
60 is_dereferenced_thing_row_major(const ir_rvalue *deref)
61 {
62 bool matrix = false;
63 const ir_rvalue *ir = deref;
64
65 while (true) {
66 matrix = matrix || ir->type->without_array()->is_matrix();
67
68 switch (ir->ir_type) {
69 case ir_type_dereference_array: {
70 const ir_dereference_array *const array_deref =
71 (const ir_dereference_array *) ir;
72
73 ir = array_deref->array;
74 break;
75 }
76
77 case ir_type_dereference_record: {
78 const ir_dereference_record *const record_deref =
79 (const ir_dereference_record *) ir;
80
81 ir = record_deref->record;
82
83 const int idx = ir->type->field_index(record_deref->field);
84 assert(idx >= 0);
85
86 const enum glsl_matrix_layout matrix_layout =
87 glsl_matrix_layout(ir->type->fields.structure[idx].matrix_layout);
88
89 switch (matrix_layout) {
90 case GLSL_MATRIX_LAYOUT_INHERITED:
91 break;
92 case GLSL_MATRIX_LAYOUT_COLUMN_MAJOR:
93 return false;
94 case GLSL_MATRIX_LAYOUT_ROW_MAJOR:
95 return matrix || deref->type->without_array()->is_record();
96 }
97
98 break;
99 }
100
101 case ir_type_dereference_variable: {
102 const ir_dereference_variable *const var_deref =
103 (const ir_dereference_variable *) ir;
104
105 const enum glsl_matrix_layout matrix_layout =
106 glsl_matrix_layout(var_deref->var->data.matrix_layout);
107
108 switch (matrix_layout) {
109 case GLSL_MATRIX_LAYOUT_INHERITED:
110 assert(!matrix);
111 return false;
112 case GLSL_MATRIX_LAYOUT_COLUMN_MAJOR:
113 return false;
114 case GLSL_MATRIX_LAYOUT_ROW_MAJOR:
115 return matrix || deref->type->without_array()->is_record();
116 }
117
118 unreachable("invalid matrix layout");
119 break;
120 }
121
122 default:
123 return false;
124 }
125 }
126
127 /* The tree must have ended with a dereference that wasn't an
128 * ir_dereference_variable. That is invalid, and it should be impossible.
129 */
130 unreachable("invalid dereference tree");
131 return false;
132 }
133
134 namespace {
135 class lower_ubo_reference_visitor : public ir_rvalue_enter_visitor {
136 public:
137 lower_ubo_reference_visitor(struct gl_shader *shader)
138 : shader(shader)
139 {
140 }
141
142 void handle_rvalue(ir_rvalue **rvalue);
143 ir_visitor_status visit_enter(ir_assignment *ir);
144
145 void setup_for_load_or_store(ir_variable *var,
146 ir_rvalue *deref,
147 ir_rvalue **offset,
148 unsigned *const_offset,
149 bool *row_major,
150 int *matrix_columns,
151 unsigned packing);
152 ir_expression *ubo_load(const struct glsl_type *type,
153 ir_rvalue *offset);
154 ir_call *ssbo_load(const struct glsl_type *type,
155 ir_rvalue *offset);
156
157 void check_for_ssbo_store(ir_assignment *ir);
158 void write_to_memory(ir_dereference *deref,
159 ir_variable *var,
160 ir_variable *write_var,
161 unsigned write_mask);
162 ir_call *ssbo_store(ir_rvalue *deref, ir_rvalue *offset,
163 unsigned write_mask);
164
165 void emit_access(bool is_write, ir_dereference *deref,
166 ir_variable *base_offset, unsigned int deref_offset,
167 bool row_major, int matrix_columns,
168 unsigned packing, unsigned write_mask);
169
170 ir_visitor_status visit_enter(class ir_expression *);
171 ir_expression *calculate_ssbo_unsized_array_length(ir_expression *expr);
172 void check_ssbo_unsized_array_length_expression(class ir_expression *);
173 void check_ssbo_unsized_array_length_assignment(ir_assignment *ir);
174
175 ir_expression *process_ssbo_unsized_array_length(ir_rvalue **,
176 ir_dereference *,
177 ir_variable *);
178 ir_expression *emit_ssbo_get_buffer_size();
179
180 unsigned calculate_unsized_array_stride(ir_dereference *deref,
181 unsigned packing);
182
183 ir_call *lower_ssbo_atomic_intrinsic(ir_call *ir);
184 ir_call *check_for_ssbo_atomic_intrinsic(ir_call *ir);
185 ir_visitor_status visit_enter(ir_call *ir);
186
187 void *mem_ctx;
188 struct gl_shader *shader;
189 struct gl_uniform_buffer_variable *ubo_var;
190 ir_rvalue *uniform_block;
191 bool progress;
192 bool is_shader_storage;
193 };
194
195 /**
196 * Determine the name of the interface block field
197 *
198 * This is the name of the specific member as it would appear in the
199 * \c gl_uniform_buffer_variable::Name field in the shader's
200 * \c UniformBlocks array.
201 */
202 static const char *
203 interface_field_name(void *mem_ctx, char *base_name, ir_rvalue *d,
204 ir_rvalue **nonconst_block_index)
205 {
206 *nonconst_block_index = NULL;
207 char *name_copy = NULL;
208 size_t base_length = 0;
209
210 /* Loop back through the IR until we find the uniform block */
211 ir_rvalue *ir = d;
212 while (ir != NULL) {
213 switch (ir->ir_type) {
214 case ir_type_dereference_variable: {
215 /* Exit loop */
216 ir = NULL;
217 break;
218 }
219
220 case ir_type_dereference_record: {
221 ir_dereference_record *r = (ir_dereference_record *) ir;
222 ir = r->record->as_dereference();
223
224 /* If we got here it means any previous array subscripts belong to
225 * block members and not the block itself so skip over them in the
226 * next pass.
227 */
228 d = ir;
229 break;
230 }
231
232 case ir_type_dereference_array: {
233 ir_dereference_array *a = (ir_dereference_array *) ir;
234 ir = a->array->as_dereference();
235 break;
236 }
237
238 case ir_type_swizzle: {
239 ir_swizzle *s = (ir_swizzle *) ir;
240 ir = s->val->as_dereference();
241 /* Skip swizzle in the next pass */
242 d = ir;
243 break;
244 }
245
246 default:
247 assert(!"Should not get here.");
248 break;
249 }
250 }
251
252 while (d != NULL) {
253 switch (d->ir_type) {
254 case ir_type_dereference_variable: {
255 ir_dereference_variable *v = (ir_dereference_variable *) d;
256 if (name_copy != NULL &&
257 v->var->is_interface_instance() &&
258 v->var->type->is_array()) {
259 return name_copy;
260 } else {
261 *nonconst_block_index = NULL;
262 return base_name;
263 }
264
265 break;
266 }
267
268 case ir_type_dereference_array: {
269 ir_dereference_array *a = (ir_dereference_array *) d;
270 size_t new_length;
271
272 if (name_copy == NULL) {
273 name_copy = ralloc_strdup(mem_ctx, base_name);
274 base_length = strlen(name_copy);
275 }
276
277 /* For arrays of arrays we start at the innermost array and work our
278 * way out so we need to insert the subscript at the base of the
279 * name string rather than just attaching it to the end.
280 */
281 new_length = base_length;
282 ir_constant *const_index = a->array_index->as_constant();
283 char *end = ralloc_strdup(NULL, &name_copy[new_length]);
284 if (!const_index) {
285 ir_rvalue *array_index = a->array_index;
286 if (array_index->type != glsl_type::uint_type)
287 array_index = i2u(array_index);
288
289 if (a->array->type->is_array() &&
290 a->array->type->fields.array->is_array()) {
291 ir_constant *base_size = new(mem_ctx)
292 ir_constant(a->array->type->fields.array->arrays_of_arrays_size());
293 array_index = mul(array_index, base_size);
294 }
295
296 if (*nonconst_block_index) {
297 *nonconst_block_index = add(*nonconst_block_index, array_index);
298 } else {
299 *nonconst_block_index = array_index;
300 }
301
302 ralloc_asprintf_rewrite_tail(&name_copy, &new_length, "[0]%s",
303 end);
304 } else {
305 ralloc_asprintf_rewrite_tail(&name_copy, &new_length, "[%d]%s",
306 const_index->get_uint_component(0),
307 end);
308 }
309 ralloc_free(end);
310
311 d = a->array->as_dereference();
312
313 break;
314 }
315
316 default:
317 assert(!"Should not get here.");
318 break;
319 }
320 }
321
322 assert(!"Should not get here.");
323 return NULL;
324 }
325
326 void
327 lower_ubo_reference_visitor::setup_for_load_or_store(ir_variable *var,
328 ir_rvalue *deref,
329 ir_rvalue **offset,
330 unsigned *const_offset,
331 bool *row_major,
332 int *matrix_columns,
333 unsigned packing)
334 {
335 /* Determine the name of the interface block */
336 ir_rvalue *nonconst_block_index;
337 const char *const field_name =
338 interface_field_name(mem_ctx, (char *) var->get_interface_type()->name,
339 deref, &nonconst_block_index);
340
341 /* Locate the block by interface name */
342 this->is_shader_storage = var->is_in_shader_storage_block();
343 unsigned num_blocks;
344 struct gl_uniform_block **blocks;
345 if (this->is_shader_storage) {
346 num_blocks = shader->NumShaderStorageBlocks;
347 blocks = shader->ShaderStorageBlocks;
348 } else {
349 num_blocks = shader->NumUniformBlocks;
350 blocks = shader->UniformBlocks;
351 }
352 this->uniform_block = NULL;
353 for (unsigned i = 0; i < num_blocks; i++) {
354 if (strcmp(field_name, blocks[i]->Name) == 0) {
355
356 ir_constant *index = new(mem_ctx) ir_constant(i);
357
358 if (nonconst_block_index) {
359 this->uniform_block = add(nonconst_block_index, index);
360 } else {
361 this->uniform_block = index;
362 }
363
364 this->ubo_var = var->is_interface_instance()
365 ? &blocks[i]->Uniforms[0] : &blocks[i]->Uniforms[var->data.location];
366
367 break;
368 }
369 }
370
371 assert(this->uniform_block);
372
373 *offset = new(mem_ctx) ir_constant(0u);
374 *const_offset = 0;
375 *row_major = is_dereferenced_thing_row_major(deref);
376 *matrix_columns = 1;
377
378 /* Calculate the offset to the start of the region of the UBO
379 * dereferenced by *rvalue. This may be a variable offset if an
380 * array dereference has a variable index.
381 */
382 while (deref) {
383 switch (deref->ir_type) {
384 case ir_type_dereference_variable: {
385 *const_offset += ubo_var->Offset;
386 deref = NULL;
387 break;
388 }
389
390 case ir_type_dereference_array: {
391 ir_dereference_array *deref_array = (ir_dereference_array *) deref;
392 unsigned array_stride;
393 if (deref_array->array->type->is_matrix() && *row_major) {
394 /* When loading a vector out of a row major matrix, the
395 * step between the columns (vectors) is the size of a
396 * float, while the step between the rows (elements of a
397 * vector) is handled below in emit_ubo_loads.
398 */
399 array_stride = 4;
400 if (deref_array->array->type->is_double())
401 array_stride *= 2;
402 *matrix_columns = deref_array->array->type->matrix_columns;
403 } else if (deref_array->type->without_array()->is_interface()) {
404 /* We're processing an array dereference of an interface instance
405 * array. The thing being dereferenced *must* be a variable
406 * dereference because interfaces cannot be embedded in other
407 * types. In terms of calculating the offsets for the lowering
408 * pass, we don't care about the array index. All elements of an
409 * interface instance array will have the same offsets relative to
410 * the base of the block that backs them.
411 */
412 deref = deref_array->array->as_dereference();
413 break;
414 } else {
415 /* Whether or not the field is row-major (because it might be a
416 * bvec2 or something) does not affect the array itself. We need
417 * to know whether an array element in its entirety is row-major.
418 */
419 const bool array_row_major =
420 is_dereferenced_thing_row_major(deref_array);
421
422 /* The array type will give the correct interface packing
423 * information
424 */
425 if (packing == GLSL_INTERFACE_PACKING_STD430) {
426 array_stride = deref_array->type->std430_array_stride(array_row_major);
427 } else {
428 array_stride = deref_array->type->std140_size(array_row_major);
429 array_stride = glsl_align(array_stride, 16);
430 }
431 }
432
433 ir_rvalue *array_index = deref_array->array_index;
434 if (array_index->type->base_type == GLSL_TYPE_INT)
435 array_index = i2u(array_index);
436
437 ir_constant *const_index =
438 array_index->constant_expression_value(NULL);
439 if (const_index) {
440 *const_offset += array_stride * const_index->value.u[0];
441 } else {
442 *offset = add(*offset,
443 mul(array_index,
444 new(mem_ctx) ir_constant(array_stride)));
445 }
446 deref = deref_array->array->as_dereference();
447 break;
448 }
449
450 case ir_type_dereference_record: {
451 ir_dereference_record *deref_record = (ir_dereference_record *) deref;
452 const glsl_type *struct_type = deref_record->record->type;
453 unsigned intra_struct_offset = 0;
454
455 for (unsigned int i = 0; i < struct_type->length; i++) {
456 const glsl_type *type = struct_type->fields.structure[i].type;
457
458 ir_dereference_record *field_deref = new(mem_ctx)
459 ir_dereference_record(deref_record->record,
460 struct_type->fields.structure[i].name);
461 const bool field_row_major =
462 is_dereferenced_thing_row_major(field_deref);
463
464 ralloc_free(field_deref);
465
466 unsigned field_align = 0;
467
468 if (packing == GLSL_INTERFACE_PACKING_STD430)
469 field_align = type->std430_base_alignment(field_row_major);
470 else
471 field_align = type->std140_base_alignment(field_row_major);
472
473 intra_struct_offset = glsl_align(intra_struct_offset, field_align);
474
475 if (strcmp(struct_type->fields.structure[i].name,
476 deref_record->field) == 0)
477 break;
478
479 if (packing == GLSL_INTERFACE_PACKING_STD430)
480 intra_struct_offset += type->std430_size(field_row_major);
481 else
482 intra_struct_offset += type->std140_size(field_row_major);
483
484 /* If the field just examined was itself a structure, apply rule
485 * #9:
486 *
487 * "The structure may have padding at the end; the base offset
488 * of the member following the sub-structure is rounded up to
489 * the next multiple of the base alignment of the structure."
490 */
491 if (type->without_array()->is_record()) {
492 intra_struct_offset = glsl_align(intra_struct_offset,
493 field_align);
494
495 }
496 }
497
498 *const_offset += intra_struct_offset;
499 deref = deref_record->record->as_dereference();
500 break;
501 }
502
503 case ir_type_swizzle: {
504 ir_swizzle *deref_swizzle = (ir_swizzle *) deref;
505
506 assert(deref_swizzle->mask.num_components == 1);
507
508 *const_offset += deref_swizzle->mask.x * sizeof(int);
509 deref = deref_swizzle->val->as_dereference();
510 break;
511 }
512
513 default:
514 assert(!"not reached");
515 deref = NULL;
516 break;
517 }
518 }
519 }
520
521 void
522 lower_ubo_reference_visitor::handle_rvalue(ir_rvalue **rvalue)
523 {
524 if (!*rvalue)
525 return;
526
527 ir_dereference *deref = (*rvalue)->as_dereference();
528 if (!deref)
529 return;
530
531 ir_variable *var = deref->variable_referenced();
532 if (!var || !var->is_in_buffer_block())
533 return;
534
535 mem_ctx = ralloc_parent(shader->ir);
536
537 ir_rvalue *offset = NULL;
538 unsigned const_offset;
539 bool row_major;
540 int matrix_columns;
541 unsigned packing = var->get_interface_type()->interface_packing;
542
543 /* Compute the offset to the start if the dereference as well as other
544 * information we need to configure the write
545 */
546 setup_for_load_or_store(var, deref,
547 &offset, &const_offset,
548 &row_major, &matrix_columns,
549 packing);
550 assert(offset);
551
552 /* Now that we've calculated the offset to the start of the
553 * dereference, walk over the type and emit loads into a temporary.
554 */
555 const glsl_type *type = (*rvalue)->type;
556 ir_variable *load_var = new(mem_ctx) ir_variable(type,
557 "ubo_load_temp",
558 ir_var_temporary);
559 base_ir->insert_before(load_var);
560
561 ir_variable *load_offset = new(mem_ctx) ir_variable(glsl_type::uint_type,
562 "ubo_load_temp_offset",
563 ir_var_temporary);
564 base_ir->insert_before(load_offset);
565 base_ir->insert_before(assign(load_offset, offset));
566
567 deref = new(mem_ctx) ir_dereference_variable(load_var);
568 emit_access(false, deref, load_offset, const_offset,
569 row_major, matrix_columns, packing, 0);
570 *rvalue = deref;
571
572 progress = true;
573 }
574
575 ir_expression *
576 lower_ubo_reference_visitor::ubo_load(const glsl_type *type,
577 ir_rvalue *offset)
578 {
579 ir_rvalue *block_ref = this->uniform_block->clone(mem_ctx, NULL);
580 return new(mem_ctx)
581 ir_expression(ir_binop_ubo_load,
582 type,
583 block_ref,
584 offset);
585
586 }
587
588 static bool
589 shader_storage_buffer_object(const _mesa_glsl_parse_state *state)
590 {
591 return state->ARB_shader_storage_buffer_object_enable;
592 }
593
594 ir_call *
595 lower_ubo_reference_visitor::ssbo_store(ir_rvalue *deref,
596 ir_rvalue *offset,
597 unsigned write_mask)
598 {
599 exec_list sig_params;
600
601 ir_variable *block_ref = new(mem_ctx)
602 ir_variable(glsl_type::uint_type, "block_ref" , ir_var_function_in);
603 sig_params.push_tail(block_ref);
604
605 ir_variable *offset_ref = new(mem_ctx)
606 ir_variable(glsl_type::uint_type, "offset" , ir_var_function_in);
607 sig_params.push_tail(offset_ref);
608
609 ir_variable *val_ref = new(mem_ctx)
610 ir_variable(deref->type, "value" , ir_var_function_in);
611 sig_params.push_tail(val_ref);
612
613 ir_variable *writemask_ref = new(mem_ctx)
614 ir_variable(glsl_type::uint_type, "write_mask" , ir_var_function_in);
615 sig_params.push_tail(writemask_ref);
616
617 ir_function_signature *sig = new(mem_ctx)
618 ir_function_signature(glsl_type::void_type, shader_storage_buffer_object);
619 assert(sig);
620 sig->replace_parameters(&sig_params);
621 sig->is_intrinsic = true;
622
623 ir_function *f = new(mem_ctx) ir_function("__intrinsic_store_ssbo");
624 f->add_signature(sig);
625
626 exec_list call_params;
627 call_params.push_tail(this->uniform_block->clone(mem_ctx, NULL));
628 call_params.push_tail(offset->clone(mem_ctx, NULL));
629 call_params.push_tail(deref->clone(mem_ctx, NULL));
630 call_params.push_tail(new(mem_ctx) ir_constant(write_mask));
631 return new(mem_ctx) ir_call(sig, NULL, &call_params);
632 }
633
634 ir_call *
635 lower_ubo_reference_visitor::ssbo_load(const struct glsl_type *type,
636 ir_rvalue *offset)
637 {
638 exec_list sig_params;
639
640 ir_variable *block_ref = new(mem_ctx)
641 ir_variable(glsl_type::uint_type, "block_ref" , ir_var_function_in);
642 sig_params.push_tail(block_ref);
643
644 ir_variable *offset_ref = new(mem_ctx)
645 ir_variable(glsl_type::uint_type, "offset_ref" , ir_var_function_in);
646 sig_params.push_tail(offset_ref);
647
648 ir_function_signature *sig =
649 new(mem_ctx) ir_function_signature(type, shader_storage_buffer_object);
650 assert(sig);
651 sig->replace_parameters(&sig_params);
652 sig->is_intrinsic = true;
653
654 ir_function *f = new(mem_ctx) ir_function("__intrinsic_load_ssbo");
655 f->add_signature(sig);
656
657 ir_variable *result = new(mem_ctx)
658 ir_variable(type, "ssbo_load_result", ir_var_temporary);
659 base_ir->insert_before(result);
660 ir_dereference_variable *deref_result = new(mem_ctx)
661 ir_dereference_variable(result);
662
663 exec_list call_params;
664 call_params.push_tail(this->uniform_block->clone(mem_ctx, NULL));
665 call_params.push_tail(offset->clone(mem_ctx, NULL));
666
667 return new(mem_ctx) ir_call(sig, deref_result, &call_params);
668 }
669
670 static inline int
671 writemask_for_size(unsigned n)
672 {
673 return ((1 << n) - 1);
674 }
675
676 /**
677 * Takes a deref and recursively calls itself to break the deref down to the
678 * point that the reads or writes generated are contiguous scalars or vectors.
679 */
680 void
681 lower_ubo_reference_visitor::emit_access(bool is_write,
682 ir_dereference *deref,
683 ir_variable *base_offset,
684 unsigned int deref_offset,
685 bool row_major,
686 int matrix_columns,
687 unsigned packing,
688 unsigned write_mask)
689 {
690 if (deref->type->is_record()) {
691 unsigned int field_offset = 0;
692
693 for (unsigned i = 0; i < deref->type->length; i++) {
694 const struct glsl_struct_field *field =
695 &deref->type->fields.structure[i];
696 ir_dereference *field_deref =
697 new(mem_ctx) ir_dereference_record(deref->clone(mem_ctx, NULL),
698 field->name);
699
700 field_offset =
701 glsl_align(field_offset,
702 field->type->std140_base_alignment(row_major));
703
704 emit_access(is_write, field_deref, base_offset,
705 deref_offset + field_offset,
706 row_major, 1, packing,
707 writemask_for_size(field_deref->type->vector_elements));
708
709 field_offset += field->type->std140_size(row_major);
710 }
711 return;
712 }
713
714 if (deref->type->is_array()) {
715 unsigned array_stride = packing == GLSL_INTERFACE_PACKING_STD430 ?
716 deref->type->fields.array->std430_array_stride(row_major) :
717 glsl_align(deref->type->fields.array->std140_size(row_major), 16);
718
719 for (unsigned i = 0; i < deref->type->length; i++) {
720 ir_constant *element = new(mem_ctx) ir_constant(i);
721 ir_dereference *element_deref =
722 new(mem_ctx) ir_dereference_array(deref->clone(mem_ctx, NULL),
723 element);
724 emit_access(is_write, element_deref, base_offset,
725 deref_offset + i * array_stride,
726 row_major, 1, packing,
727 writemask_for_size(element_deref->type->vector_elements));
728 }
729 return;
730 }
731
732 if (deref->type->is_matrix()) {
733 for (unsigned i = 0; i < deref->type->matrix_columns; i++) {
734 ir_constant *col = new(mem_ctx) ir_constant(i);
735 ir_dereference *col_deref =
736 new(mem_ctx) ir_dereference_array(deref->clone(mem_ctx, NULL), col);
737
738 if (row_major) {
739 /* For a row-major matrix, the next column starts at the next
740 * element.
741 */
742 int size_mul = deref->type->is_double() ? 8 : 4;
743 emit_access(is_write, col_deref, base_offset,
744 deref_offset + i * size_mul,
745 row_major, deref->type->matrix_columns, packing,
746 writemask_for_size(col_deref->type->vector_elements));
747 } else {
748 int size_mul;
749
750 /* std430 doesn't round up vec2 size to a vec4 size */
751 if (packing == GLSL_INTERFACE_PACKING_STD430 &&
752 deref->type->vector_elements == 2 &&
753 !deref->type->is_double()) {
754 size_mul = 8;
755 } else {
756 /* std140 always rounds the stride of arrays (and matrices) to a
757 * vec4, so matrices are always 16 between columns/rows. With
758 * doubles, they will be 32 apart when there are more than 2 rows.
759 *
760 * For both std140 and std430, if the member is a
761 * three-'component vector with components consuming N basic
762 * machine units, the base alignment is 4N. For vec4, base
763 * alignment is 4N.
764 */
765 size_mul = (deref->type->is_double() &&
766 deref->type->vector_elements > 2) ? 32 : 16;
767 }
768
769 emit_access(is_write, col_deref, base_offset,
770 deref_offset + i * size_mul,
771 row_major, deref->type->matrix_columns, packing,
772 writemask_for_size(col_deref->type->vector_elements));
773 }
774 }
775 return;
776 }
777
778 assert(deref->type->is_scalar() || deref->type->is_vector());
779
780 if (!row_major) {
781 ir_rvalue *offset =
782 add(base_offset, new(mem_ctx) ir_constant(deref_offset));
783 if (is_write)
784 base_ir->insert_after(ssbo_store(deref, offset, write_mask));
785 else {
786 if (!this->is_shader_storage) {
787 base_ir->insert_before(assign(deref->clone(mem_ctx, NULL),
788 ubo_load(deref->type, offset)));
789 } else {
790 ir_call *load_ssbo = ssbo_load(deref->type, offset);
791 base_ir->insert_before(load_ssbo);
792 ir_rvalue *value = load_ssbo->return_deref->as_rvalue()->clone(mem_ctx, NULL);
793 base_ir->insert_before(assign(deref->clone(mem_ctx, NULL), value));
794 }
795 }
796 } else {
797 unsigned N = deref->type->is_double() ? 8 : 4;
798
799 /* We're dereffing a column out of a row-major matrix, so we
800 * gather the vector from each stored row.
801 */
802 assert(deref->type->base_type == GLSL_TYPE_FLOAT ||
803 deref->type->base_type == GLSL_TYPE_DOUBLE);
804 /* Matrices, row_major or not, are stored as if they were
805 * arrays of vectors of the appropriate size in std140.
806 * Arrays have their strides rounded up to a vec4, so the
807 * matrix stride is always 16. However a double matrix may either be 16
808 * or 32 depending on the number of columns.
809 */
810 assert(matrix_columns <= 4);
811 unsigned matrix_stride = 0;
812 /* Matrix stride for std430 mat2xY matrices are not rounded up to
813 * vec4 size. From OpenGL 4.3 spec, section 7.6.2.2 "Standard Uniform
814 * Block Layout":
815 *
816 * "2. If the member is a two- or four-component vector with components
817 * consuming N basic machine units, the base alignment is 2N or 4N,
818 * respectively." [...]
819 * "4. If the member is an array of scalars or vectors, the base alignment
820 * and array stride are set to match the base alignment of a single array
821 * element, according to rules (1), (2), and (3), and rounded up to the
822 * base alignment of a vec4." [...]
823 * "7. If the member is a row-major matrix with C columns and R rows, the
824 * matrix is stored identically to an array of R row vectors with C
825 * components each, according to rule (4)." [...]
826 * "When using the std430 storage layout, shader storage blocks will be
827 * laid out in buffer storage identically to uniform and shader storage
828 * blocks using the std140 layout, except that the base alignment and
829 * stride of arrays of scalars and vectors in rule 4 and of structures in
830 * rule 9 are not rounded up a multiple of the base alignment of a vec4."
831 */
832 if (packing == GLSL_INTERFACE_PACKING_STD430 && matrix_columns == 2)
833 matrix_stride = 2 * N;
834 else
835 matrix_stride = glsl_align(matrix_columns * N, 16);
836
837 const glsl_type *deref_type = deref->type->base_type == GLSL_TYPE_FLOAT ?
838 glsl_type::float_type : glsl_type::double_type;
839
840 for (unsigned i = 0; i < deref->type->vector_elements; i++) {
841 ir_rvalue *chan_offset =
842 add(base_offset,
843 new(mem_ctx) ir_constant(deref_offset + i * matrix_stride));
844 if (is_write) {
845 /* If the component is not in the writemask, then don't
846 * store any value.
847 */
848 if (!((1 << i) & write_mask))
849 continue;
850
851 base_ir->insert_after(ssbo_store(swizzle(deref, i, 1), chan_offset, 1));
852 } else {
853 if (!this->is_shader_storage) {
854 base_ir->insert_before(assign(deref->clone(mem_ctx, NULL),
855 ubo_load(deref_type, chan_offset),
856 (1U << i)));
857 } else {
858 ir_call *load_ssbo = ssbo_load(deref_type, chan_offset);
859 base_ir->insert_before(load_ssbo);
860 ir_rvalue *value = load_ssbo->return_deref->as_rvalue()->clone(mem_ctx, NULL);
861 base_ir->insert_before(assign(deref->clone(mem_ctx, NULL),
862 value,
863 (1U << i)));
864 }
865 }
866 }
867 }
868 }
869
870 void
871 lower_ubo_reference_visitor::write_to_memory(ir_dereference *deref,
872 ir_variable *var,
873 ir_variable *write_var,
874 unsigned write_mask)
875 {
876 ir_rvalue *offset = NULL;
877 unsigned const_offset;
878 bool row_major;
879 int matrix_columns;
880 unsigned packing = var->get_interface_type()->interface_packing;
881
882 /* Compute the offset to the start if the dereference as well as other
883 * information we need to configure the write
884 */
885 setup_for_load_or_store(var, deref,
886 &offset, &const_offset,
887 &row_major, &matrix_columns,
888 packing);
889 assert(offset);
890
891 /* Now emit writes from the temporary to memory */
892 ir_variable *write_offset =
893 new(mem_ctx) ir_variable(glsl_type::uint_type,
894 "ssbo_store_temp_offset",
895 ir_var_temporary);
896
897 base_ir->insert_before(write_offset);
898 base_ir->insert_before(assign(write_offset, offset));
899
900 deref = new(mem_ctx) ir_dereference_variable(write_var);
901 emit_access(true, deref, write_offset, const_offset,
902 row_major, matrix_columns, packing, write_mask);
903 }
904
905 ir_visitor_status
906 lower_ubo_reference_visitor::visit_enter(ir_expression *ir)
907 {
908 check_ssbo_unsized_array_length_expression(ir);
909 return rvalue_visit(ir);
910 }
911
912 ir_expression *
913 lower_ubo_reference_visitor::calculate_ssbo_unsized_array_length(ir_expression *expr)
914 {
915 if (expr->operation !=
916 ir_expression_operation(ir_unop_ssbo_unsized_array_length))
917 return NULL;
918
919 ir_rvalue *rvalue = expr->operands[0]->as_rvalue();
920 if (!rvalue ||
921 !rvalue->type->is_array() || !rvalue->type->is_unsized_array())
922 return NULL;
923
924 ir_dereference *deref = expr->operands[0]->as_dereference();
925 if (!deref)
926 return NULL;
927
928 ir_variable *var = expr->operands[0]->variable_referenced();
929 if (!var || !var->is_in_shader_storage_block())
930 return NULL;
931 return process_ssbo_unsized_array_length(&rvalue, deref, var);
932 }
933
934 void
935 lower_ubo_reference_visitor::check_ssbo_unsized_array_length_expression(ir_expression *ir)
936 {
937 if (ir->operation ==
938 ir_expression_operation(ir_unop_ssbo_unsized_array_length)) {
939 /* Don't replace this unop if it is found alone. It is going to be
940 * removed by the optimization passes or replaced if it is part of
941 * an ir_assignment or another ir_expression.
942 */
943 return;
944 }
945
946 for (unsigned i = 0; i < ir->get_num_operands(); i++) {
947 if (ir->operands[i]->ir_type != ir_type_expression)
948 continue;
949 ir_expression *expr = (ir_expression *) ir->operands[i];
950 ir_expression *temp = calculate_ssbo_unsized_array_length(expr);
951 if (!temp)
952 continue;
953
954 delete expr;
955 ir->operands[i] = temp;
956 }
957 }
958
959 void
960 lower_ubo_reference_visitor::check_ssbo_unsized_array_length_assignment(ir_assignment *ir)
961 {
962 if (!ir->rhs || ir->rhs->ir_type != ir_type_expression)
963 return;
964
965 ir_expression *expr = (ir_expression *) ir->rhs;
966 ir_expression *temp = calculate_ssbo_unsized_array_length(expr);
967 if (!temp)
968 return;
969
970 delete expr;
971 ir->rhs = temp;
972 return;
973 }
974
975 ir_expression *
976 lower_ubo_reference_visitor::emit_ssbo_get_buffer_size()
977 {
978 ir_rvalue *block_ref = this->uniform_block->clone(mem_ctx, NULL);
979 return new(mem_ctx) ir_expression(ir_unop_get_buffer_size,
980 glsl_type::int_type,
981 block_ref);
982 }
983
984 unsigned
985 lower_ubo_reference_visitor::calculate_unsized_array_stride(ir_dereference *deref,
986 unsigned packing)
987 {
988 unsigned array_stride = 0;
989
990 switch (deref->ir_type) {
991 case ir_type_dereference_variable:
992 {
993 ir_dereference_variable *deref_var = (ir_dereference_variable *)deref;
994 const struct glsl_type *unsized_array_type = NULL;
995 /* An unsized array can be sized by other lowering passes, so pick
996 * the first field of the array which has the data type of the unsized
997 * array.
998 */
999 unsized_array_type = deref_var->var->type->fields.array;
1000
1001 /* Whether or not the field is row-major (because it might be a
1002 * bvec2 or something) does not affect the array itself. We need
1003 * to know whether an array element in its entirety is row-major.
1004 */
1005 const bool array_row_major =
1006 is_dereferenced_thing_row_major(deref_var);
1007
1008 if (packing == GLSL_INTERFACE_PACKING_STD430) {
1009 array_stride = unsized_array_type->std430_array_stride(array_row_major);
1010 } else {
1011 array_stride = unsized_array_type->std140_size(array_row_major);
1012 array_stride = glsl_align(array_stride, 16);
1013 }
1014 break;
1015 }
1016 case ir_type_dereference_record:
1017 {
1018 ir_dereference_record *deref_record = (ir_dereference_record *) deref;
1019 ir_dereference *interface_deref =
1020 deref_record->record->as_dereference();
1021 assert(interface_deref != NULL);
1022 const struct glsl_type *interface_type = interface_deref->type;
1023 unsigned record_length = interface_type->length;
1024 /* Unsized array is always the last element of the interface */
1025 const struct glsl_type *unsized_array_type =
1026 interface_type->fields.structure[record_length - 1].type->fields.array;
1027
1028 const bool array_row_major =
1029 is_dereferenced_thing_row_major(deref_record);
1030
1031 if (packing == GLSL_INTERFACE_PACKING_STD430) {
1032 array_stride = unsized_array_type->std430_array_stride(array_row_major);
1033 } else {
1034 array_stride = unsized_array_type->std140_size(array_row_major);
1035 array_stride = glsl_align(array_stride, 16);
1036 }
1037 break;
1038 }
1039 default:
1040 unreachable("Unsupported dereference type");
1041 }
1042 return array_stride;
1043 }
1044
1045 ir_expression *
1046 lower_ubo_reference_visitor::process_ssbo_unsized_array_length(ir_rvalue **rvalue,
1047 ir_dereference *deref,
1048 ir_variable *var)
1049 {
1050 mem_ctx = ralloc_parent(*rvalue);
1051
1052 ir_rvalue *base_offset = NULL;
1053 unsigned const_offset;
1054 bool row_major;
1055 int matrix_columns;
1056 unsigned packing = var->get_interface_type()->interface_packing;
1057 int unsized_array_stride = calculate_unsized_array_stride(deref, packing);
1058
1059 /* Compute the offset to the start if the dereference as well as other
1060 * information we need to calculate the length.
1061 */
1062 setup_for_load_or_store(var, deref,
1063 &base_offset, &const_offset,
1064 &row_major, &matrix_columns,
1065 packing);
1066 /* array.length() =
1067 * max((buffer_object_size - offset_of_array) / stride_of_array, 0)
1068 */
1069 ir_expression *buffer_size = emit_ssbo_get_buffer_size();
1070
1071 ir_expression *offset_of_array = new(mem_ctx)
1072 ir_expression(ir_binop_add, base_offset,
1073 new(mem_ctx) ir_constant(const_offset));
1074 ir_expression *offset_of_array_int = new(mem_ctx)
1075 ir_expression(ir_unop_u2i, offset_of_array);
1076
1077 ir_expression *sub = new(mem_ctx)
1078 ir_expression(ir_binop_sub, buffer_size, offset_of_array_int);
1079 ir_expression *div = new(mem_ctx)
1080 ir_expression(ir_binop_div, sub,
1081 new(mem_ctx) ir_constant(unsized_array_stride));
1082 ir_expression *max = new(mem_ctx)
1083 ir_expression(ir_binop_max, div, new(mem_ctx) ir_constant(0));
1084
1085 return max;
1086 }
1087
1088 void
1089 lower_ubo_reference_visitor::check_for_ssbo_store(ir_assignment *ir)
1090 {
1091 if (!ir || !ir->lhs)
1092 return;
1093
1094 ir_rvalue *rvalue = ir->lhs->as_rvalue();
1095 if (!rvalue)
1096 return;
1097
1098 ir_dereference *deref = ir->lhs->as_dereference();
1099 if (!deref)
1100 return;
1101
1102 ir_variable *var = ir->lhs->variable_referenced();
1103 if (!var || !var->is_in_buffer_block())
1104 return;
1105
1106 /* We have a write to a buffer variable, so declare a temporary and rewrite
1107 * the assignment so that the temporary is the LHS.
1108 */
1109 mem_ctx = ralloc_parent(shader->ir);
1110
1111 const glsl_type *type = rvalue->type;
1112 ir_variable *write_var = new(mem_ctx) ir_variable(type,
1113 "ssbo_store_temp",
1114 ir_var_temporary);
1115 base_ir->insert_before(write_var);
1116 ir->lhs = new(mem_ctx) ir_dereference_variable(write_var);
1117
1118 /* Now we have to write the value assigned to the temporary back to memory */
1119 write_to_memory(deref, var, write_var, ir->write_mask);
1120 progress = true;
1121 }
1122
1123
1124 ir_visitor_status
1125 lower_ubo_reference_visitor::visit_enter(ir_assignment *ir)
1126 {
1127 check_ssbo_unsized_array_length_assignment(ir);
1128 check_for_ssbo_store(ir);
1129 return rvalue_visit(ir);
1130 }
1131
1132 /* Lowers the intrinsic call to a new internal intrinsic that swaps the
1133 * access to the buffer variable in the first parameter by an offset
1134 * and block index. This involves creating the new internal intrinsic
1135 * (i.e. the new function signature).
1136 */
1137 ir_call *
1138 lower_ubo_reference_visitor::lower_ssbo_atomic_intrinsic(ir_call *ir)
1139 {
1140 /* SSBO atomics usually have 2 parameters, the buffer variable and an
1141 * integer argument. The exception is CompSwap, that has an additional
1142 * integer parameter.
1143 */
1144 int param_count = ir->actual_parameters.length();
1145 assert(param_count == 2 || param_count == 3);
1146
1147 /* First argument must be a scalar integer buffer variable */
1148 exec_node *param = ir->actual_parameters.get_head();
1149 ir_instruction *inst = (ir_instruction *) param;
1150 assert(inst->ir_type == ir_type_dereference_variable ||
1151 inst->ir_type == ir_type_dereference_array ||
1152 inst->ir_type == ir_type_dereference_record ||
1153 inst->ir_type == ir_type_swizzle);
1154
1155 ir_rvalue *deref = (ir_rvalue *) inst;
1156 assert(deref->type->is_scalar() && deref->type->is_integer());
1157
1158 ir_variable *var = deref->variable_referenced();
1159 assert(var);
1160
1161 /* Compute the offset to the start if the dereference and the
1162 * block index
1163 */
1164 mem_ctx = ralloc_parent(shader->ir);
1165
1166 ir_rvalue *offset = NULL;
1167 unsigned const_offset;
1168 bool row_major;
1169 int matrix_columns;
1170 unsigned packing = var->get_interface_type()->interface_packing;
1171
1172 setup_for_load_or_store(var, deref,
1173 &offset, &const_offset,
1174 &row_major, &matrix_columns,
1175 packing);
1176 assert(offset);
1177 assert(!row_major);
1178 assert(matrix_columns == 1);
1179
1180 ir_rvalue *deref_offset =
1181 add(offset, new(mem_ctx) ir_constant(const_offset));
1182 ir_rvalue *block_index = this->uniform_block->clone(mem_ctx, NULL);
1183
1184 /* Create the new internal function signature that will take a block
1185 * index and offset instead of a buffer variable
1186 */
1187 exec_list sig_params;
1188 ir_variable *sig_param = new(mem_ctx)
1189 ir_variable(glsl_type::uint_type, "block_ref" , ir_var_function_in);
1190 sig_params.push_tail(sig_param);
1191
1192 sig_param = new(mem_ctx)
1193 ir_variable(glsl_type::uint_type, "offset" , ir_var_function_in);
1194 sig_params.push_tail(sig_param);
1195
1196 const glsl_type *type = deref->type->base_type == GLSL_TYPE_INT ?
1197 glsl_type::int_type : glsl_type::uint_type;
1198 sig_param = new(mem_ctx)
1199 ir_variable(type, "data1", ir_var_function_in);
1200 sig_params.push_tail(sig_param);
1201
1202 if (param_count == 3) {
1203 sig_param = new(mem_ctx)
1204 ir_variable(type, "data2", ir_var_function_in);
1205 sig_params.push_tail(sig_param);
1206 }
1207
1208 ir_function_signature *sig =
1209 new(mem_ctx) ir_function_signature(deref->type,
1210 shader_storage_buffer_object);
1211 assert(sig);
1212 sig->replace_parameters(&sig_params);
1213 sig->is_intrinsic = true;
1214
1215 char func_name[64];
1216 sprintf(func_name, "%s_internal", ir->callee_name());
1217 ir_function *f = new(mem_ctx) ir_function(func_name);
1218 f->add_signature(sig);
1219
1220 /* Now, create the call to the internal intrinsic */
1221 exec_list call_params;
1222 call_params.push_tail(block_index);
1223 call_params.push_tail(deref_offset);
1224 param = ir->actual_parameters.get_head()->get_next();
1225 ir_rvalue *param_as_rvalue = ((ir_instruction *) param)->as_rvalue();
1226 call_params.push_tail(param_as_rvalue->clone(mem_ctx, NULL));
1227 if (param_count == 3) {
1228 param = param->get_next();
1229 param_as_rvalue = ((ir_instruction *) param)->as_rvalue();
1230 call_params.push_tail(param_as_rvalue->clone(mem_ctx, NULL));
1231 }
1232 ir_dereference_variable *return_deref =
1233 ir->return_deref->clone(mem_ctx, NULL);
1234 return new(mem_ctx) ir_call(sig, return_deref, &call_params);
1235 }
1236
1237 ir_call *
1238 lower_ubo_reference_visitor::check_for_ssbo_atomic_intrinsic(ir_call *ir)
1239 {
1240 const char *callee = ir->callee_name();
1241 if (!strcmp("__intrinsic_ssbo_atomic_add", callee) ||
1242 !strcmp("__intrinsic_ssbo_atomic_min", callee) ||
1243 !strcmp("__intrinsic_ssbo_atomic_max", callee) ||
1244 !strcmp("__intrinsic_ssbo_atomic_and", callee) ||
1245 !strcmp("__intrinsic_ssbo_atomic_or", callee) ||
1246 !strcmp("__intrinsic_ssbo_atomic_xor", callee) ||
1247 !strcmp("__intrinsic_ssbo_atomic_exchange", callee) ||
1248 !strcmp("__intrinsic_ssbo_atomic_comp_swap", callee)) {
1249 return lower_ssbo_atomic_intrinsic(ir);
1250 }
1251
1252 return ir;
1253 }
1254
1255
1256 ir_visitor_status
1257 lower_ubo_reference_visitor::visit_enter(ir_call *ir)
1258 {
1259 ir_call *new_ir = check_for_ssbo_atomic_intrinsic(ir);
1260 if (new_ir != ir) {
1261 progress = true;
1262 base_ir->replace_with(new_ir);
1263 return visit_continue_with_parent;
1264 }
1265
1266 return rvalue_visit(ir);
1267 }
1268
1269
1270 } /* unnamed namespace */
1271
1272 void
1273 lower_ubo_reference(struct gl_shader *shader, exec_list *instructions)
1274 {
1275 lower_ubo_reference_visitor v(shader);
1276
1277 /* Loop over the instructions lowering references, because we take
1278 * a deref of a UBO array using a UBO dereference as the index will
1279 * produce a collection of instructions all of which have cloned
1280 * UBO dereferences for that array index.
1281 */
1282 do {
1283 v.progress = false;
1284 visit_list_elements(&v, instructions);
1285 } while (v.progress);
1286 }