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