glsl: Use more link_calculate_matrix_stride in lower_buffer_access
[mesa.git] / src / compiler / glsl / lower_buffer_access.cpp
1 /*
2 * Copyright (c) 2015 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_buffer_access.cpp
26 *
27 * Helper for IR lowering pass to replace dereferences of buffer object based
28 * shader variables with intrinsic function calls.
29 *
30 * This helper is used by lowering passes for UBOs, SSBOs and compute shader
31 * shared variables.
32 */
33
34 #include "lower_buffer_access.h"
35 #include "ir_builder.h"
36 #include "main/macros.h"
37 #include "util/list.h"
38 #include "glsl_parser_extras.h"
39 #include "linker.h"
40
41 using namespace ir_builder;
42
43 namespace lower_buffer_access {
44
45 static inline int
46 writemask_for_size(unsigned n)
47 {
48 return ((1 << n) - 1);
49 }
50
51 /**
52 * Takes a deref and recursively calls itself to break the deref down to the
53 * point that the reads or writes generated are contiguous scalars or vectors.
54 */
55 void
56 lower_buffer_access::emit_access(void *mem_ctx,
57 bool is_write,
58 ir_dereference *deref,
59 ir_variable *base_offset,
60 unsigned int deref_offset,
61 bool row_major,
62 const glsl_type *matrix_type,
63 enum glsl_interface_packing packing,
64 unsigned int write_mask)
65 {
66 if (deref->type->is_record()) {
67 unsigned int field_offset = 0;
68
69 for (unsigned i = 0; i < deref->type->length; i++) {
70 const struct glsl_struct_field *field =
71 &deref->type->fields.structure[i];
72 ir_dereference *field_deref =
73 new(mem_ctx) ir_dereference_record(deref->clone(mem_ctx, NULL),
74 field->name);
75
76 field_offset =
77 glsl_align(field_offset,
78 field->type->std140_base_alignment(row_major));
79
80 emit_access(mem_ctx, is_write, field_deref, base_offset,
81 deref_offset + field_offset,
82 row_major, NULL, packing,
83 writemask_for_size(field_deref->type->vector_elements));
84
85 field_offset += field->type->std140_size(row_major);
86 }
87 return;
88 }
89
90 if (deref->type->is_array()) {
91 unsigned array_stride = packing == GLSL_INTERFACE_PACKING_STD430 ?
92 deref->type->fields.array->std430_array_stride(row_major) :
93 glsl_align(deref->type->fields.array->std140_size(row_major), 16);
94
95 for (unsigned i = 0; i < deref->type->length; i++) {
96 ir_constant *element = new(mem_ctx) ir_constant(i);
97 ir_dereference *element_deref =
98 new(mem_ctx) ir_dereference_array(deref->clone(mem_ctx, NULL),
99 element);
100 emit_access(mem_ctx, is_write, element_deref, base_offset,
101 deref_offset + i * array_stride,
102 row_major, NULL, packing,
103 writemask_for_size(element_deref->type->vector_elements));
104 }
105 return;
106 }
107
108 if (deref->type->is_matrix()) {
109 for (unsigned i = 0; i < deref->type->matrix_columns; i++) {
110 ir_constant *col = new(mem_ctx) ir_constant(i);
111 ir_dereference *col_deref =
112 new(mem_ctx) ir_dereference_array(deref->clone(mem_ctx, NULL), col);
113
114 if (row_major) {
115 /* For a row-major matrix, the next column starts at the next
116 * element.
117 */
118 int size_mul = deref->type->is_64bit() ? 8 : 4;
119 emit_access(mem_ctx, is_write, col_deref, base_offset,
120 deref_offset + i * size_mul,
121 row_major, deref->type, packing,
122 writemask_for_size(col_deref->type->vector_elements));
123 } else {
124 const int size_mul =
125 link_calculate_matrix_stride(deref->type, row_major, packing);
126
127 emit_access(mem_ctx, is_write, col_deref, base_offset,
128 deref_offset + i * size_mul,
129 row_major, deref->type, packing,
130 writemask_for_size(col_deref->type->vector_elements));
131 }
132 }
133 return;
134 }
135
136 assert(deref->type->is_scalar() || deref->type->is_vector());
137
138 if (!row_major) {
139 ir_rvalue *offset =
140 add(base_offset, new(mem_ctx) ir_constant(deref_offset));
141 unsigned mask =
142 is_write ? write_mask : (1 << deref->type->vector_elements) - 1;
143 insert_buffer_access(mem_ctx, deref, deref->type, offset, mask, -1);
144 } else {
145 /* We're dereffing a column out of a row-major matrix, so we
146 * gather the vector from each stored row.
147 */
148 assert(deref->type->is_float() || deref->type->is_double());
149 assert(matrix_type != NULL);
150
151 const unsigned matrix_stride =
152 link_calculate_matrix_stride(matrix_type, row_major, packing);
153
154 const glsl_type *deref_type = deref->type->is_float() ?
155 glsl_type::float_type : glsl_type::double_type;
156
157 for (unsigned i = 0; i < deref->type->vector_elements; i++) {
158 ir_rvalue *chan_offset =
159 add(base_offset,
160 new(mem_ctx) ir_constant(deref_offset + i * matrix_stride));
161 if (!is_write || ((1U << i) & write_mask))
162 insert_buffer_access(mem_ctx, deref, deref_type, chan_offset,
163 (1U << i), i);
164 }
165 }
166 }
167
168 /**
169 * Determine if a thing being dereferenced is row-major
170 *
171 * There is some trickery here.
172 *
173 * If the thing being dereferenced is a member of uniform block \b without an
174 * instance name, then the name of the \c ir_variable is the field name of an
175 * interface type. If this field is row-major, then the thing referenced is
176 * row-major.
177 *
178 * If the thing being dereferenced is a member of uniform block \b with an
179 * instance name, then the last dereference in the tree will be an
180 * \c ir_dereference_record. If that record field is row-major, then the
181 * thing referenced is row-major.
182 */
183 bool
184 lower_buffer_access::is_dereferenced_thing_row_major(const ir_rvalue *deref)
185 {
186 bool matrix = false;
187 const ir_rvalue *ir = deref;
188
189 while (true) {
190 matrix = matrix || ir->type->without_array()->is_matrix();
191
192 switch (ir->ir_type) {
193 case ir_type_dereference_array: {
194 const ir_dereference_array *const array_deref =
195 (const ir_dereference_array *) ir;
196
197 ir = array_deref->array;
198 break;
199 }
200
201 case ir_type_dereference_record: {
202 const ir_dereference_record *const record_deref =
203 (const ir_dereference_record *) ir;
204
205 ir = record_deref->record;
206
207 const int idx = record_deref->field_idx;
208 assert(idx >= 0);
209
210 const enum glsl_matrix_layout matrix_layout =
211 glsl_matrix_layout(ir->type->fields.structure[idx].matrix_layout);
212
213 switch (matrix_layout) {
214 case GLSL_MATRIX_LAYOUT_INHERITED:
215 break;
216 case GLSL_MATRIX_LAYOUT_COLUMN_MAJOR:
217 return false;
218 case GLSL_MATRIX_LAYOUT_ROW_MAJOR:
219 return matrix || deref->type->without_array()->is_record();
220 }
221
222 break;
223 }
224
225 case ir_type_dereference_variable: {
226 const ir_dereference_variable *const var_deref =
227 (const ir_dereference_variable *) ir;
228
229 const enum glsl_matrix_layout matrix_layout =
230 glsl_matrix_layout(var_deref->var->data.matrix_layout);
231
232 switch (matrix_layout) {
233 case GLSL_MATRIX_LAYOUT_INHERITED: {
234 /* For interface block matrix variables we handle inherited
235 * layouts at HIR generation time, but we don't do that for shared
236 * variables, which are always column-major
237 */
238 MAYBE_UNUSED ir_variable *var = deref->variable_referenced();
239 assert((var->is_in_buffer_block() && !matrix) ||
240 var->data.mode == ir_var_shader_shared);
241 return false;
242 }
243 case GLSL_MATRIX_LAYOUT_COLUMN_MAJOR:
244 return false;
245 case GLSL_MATRIX_LAYOUT_ROW_MAJOR:
246 return matrix || deref->type->without_array()->is_record();
247 }
248
249 unreachable("invalid matrix layout");
250 break;
251 }
252
253 default:
254 return false;
255 }
256 }
257
258 /* The tree must have ended with a dereference that wasn't an
259 * ir_dereference_variable. That is invalid, and it should be impossible.
260 */
261 unreachable("invalid dereference tree");
262 return false;
263 }
264
265 /**
266 * This function initializes various values that will be used later by
267 * emit_access when actually emitting loads or stores.
268 *
269 * Note: const_offset is an input as well as an output, clients must
270 * initialize it to the offset of the variable in the underlying block, and
271 * this function will adjust it by adding the constant offset of the member
272 * being accessed into that variable.
273 */
274 void
275 lower_buffer_access::setup_buffer_access(void *mem_ctx,
276 ir_rvalue *deref,
277 ir_rvalue **offset,
278 unsigned *const_offset,
279 bool *row_major,
280 const glsl_type **matrix_type,
281 const glsl_struct_field **struct_field,
282 enum glsl_interface_packing packing)
283 {
284 *offset = new(mem_ctx) ir_constant(0u);
285 *row_major = is_dereferenced_thing_row_major(deref);
286 *matrix_type = NULL;
287
288 /* Calculate the offset to the start of the region of the UBO
289 * dereferenced by *rvalue. This may be a variable offset if an
290 * array dereference has a variable index.
291 */
292 while (deref) {
293 switch (deref->ir_type) {
294 case ir_type_dereference_variable: {
295 deref = NULL;
296 break;
297 }
298
299 case ir_type_dereference_array: {
300 ir_dereference_array *deref_array = (ir_dereference_array *) deref;
301 unsigned array_stride;
302 if (deref_array->array->type->is_vector()) {
303 /* We get this when storing or loading a component out of a vector
304 * with a non-constant index. This happens for v[i] = f where v is
305 * a vector (or m[i][j] = f where m is a matrix). If we don't
306 * lower that here, it gets turned into v = vector_insert(v, i,
307 * f), which loads the entire vector, modifies one component and
308 * then write the entire thing back. That breaks if another
309 * thread or SIMD channel is modifying the same vector.
310 */
311 array_stride = 4;
312 if (deref_array->array->type->is_64bit())
313 array_stride *= 2;
314 } else if (deref_array->array->type->is_matrix() && *row_major) {
315 /* When loading a vector out of a row major matrix, the
316 * step between the columns (vectors) is the size of a
317 * float, while the step between the rows (elements of a
318 * vector) is handled below in emit_ubo_loads.
319 */
320 array_stride = 4;
321 if (deref_array->array->type->is_64bit())
322 array_stride *= 2;
323 *matrix_type = deref_array->array->type;
324 } else if (deref_array->type->without_array()->is_interface()) {
325 /* We're processing an array dereference of an interface instance
326 * array. The thing being dereferenced *must* be a variable
327 * dereference because interfaces cannot be embedded in other
328 * types. In terms of calculating the offsets for the lowering
329 * pass, we don't care about the array index. All elements of an
330 * interface instance array will have the same offsets relative to
331 * the base of the block that backs them.
332 */
333 deref = deref_array->array->as_dereference();
334 break;
335 } else {
336 /* Whether or not the field is row-major (because it might be a
337 * bvec2 or something) does not affect the array itself. We need
338 * to know whether an array element in its entirety is row-major.
339 */
340 const bool array_row_major =
341 is_dereferenced_thing_row_major(deref_array);
342
343 /* The array type will give the correct interface packing
344 * information
345 */
346 if (packing == GLSL_INTERFACE_PACKING_STD430) {
347 array_stride = deref_array->type->std430_array_stride(array_row_major);
348 } else {
349 array_stride = deref_array->type->std140_size(array_row_major);
350 array_stride = glsl_align(array_stride, 16);
351 }
352 }
353
354 ir_rvalue *array_index = deref_array->array_index;
355 if (array_index->type->base_type == GLSL_TYPE_INT)
356 array_index = i2u(array_index);
357
358 ir_constant *const_index =
359 array_index->constant_expression_value(mem_ctx, NULL);
360 if (const_index) {
361 *const_offset += array_stride * const_index->value.u[0];
362 } else {
363 *offset = add(*offset,
364 mul(array_index,
365 new(mem_ctx) ir_constant(array_stride)));
366 }
367 deref = deref_array->array->as_dereference();
368 break;
369 }
370
371 case ir_type_dereference_record: {
372 ir_dereference_record *deref_record = (ir_dereference_record *) deref;
373 const glsl_type *struct_type = deref_record->record->type;
374 unsigned intra_struct_offset = 0;
375
376 for (unsigned int i = 0; i < struct_type->length; i++) {
377 const glsl_type *type = struct_type->fields.structure[i].type;
378
379 ir_dereference_record *field_deref = new(mem_ctx)
380 ir_dereference_record(deref_record->record,
381 struct_type->fields.structure[i].name);
382 const bool field_row_major =
383 is_dereferenced_thing_row_major(field_deref);
384
385 ralloc_free(field_deref);
386
387 unsigned field_align = 0;
388
389 if (packing == GLSL_INTERFACE_PACKING_STD430)
390 field_align = type->std430_base_alignment(field_row_major);
391 else
392 field_align = type->std140_base_alignment(field_row_major);
393
394 if (struct_type->fields.structure[i].offset != -1) {
395 intra_struct_offset = struct_type->fields.structure[i].offset;
396 }
397
398 intra_struct_offset = glsl_align(intra_struct_offset, field_align);
399
400 assert(deref_record->field_idx >= 0);
401 if (i == (unsigned) deref_record->field_idx) {
402 if (struct_field)
403 *struct_field = &struct_type->fields.structure[i];
404 break;
405 }
406
407 if (packing == GLSL_INTERFACE_PACKING_STD430)
408 intra_struct_offset += type->std430_size(field_row_major);
409 else
410 intra_struct_offset += type->std140_size(field_row_major);
411
412 /* If the field just examined was itself a structure, apply rule
413 * #9:
414 *
415 * "The structure may have padding at the end; the base offset
416 * of the member following the sub-structure is rounded up to
417 * the next multiple of the base alignment of the structure."
418 */
419 if (type->without_array()->is_record()) {
420 intra_struct_offset = glsl_align(intra_struct_offset,
421 field_align);
422
423 }
424 }
425
426 *const_offset += intra_struct_offset;
427 deref = deref_record->record->as_dereference();
428 break;
429 }
430
431 case ir_type_swizzle: {
432 ir_swizzle *deref_swizzle = (ir_swizzle *) deref;
433
434 assert(deref_swizzle->mask.num_components == 1);
435
436 *const_offset += deref_swizzle->mask.x * sizeof(int);
437 deref = deref_swizzle->val->as_dereference();
438 break;
439 }
440
441 default:
442 assert(!"not reached");
443 deref = NULL;
444 break;
445 }
446 }
447 }
448
449 } /* namespace lower_buffer_access */