aco: combine MRTZ (depth, stencil, sample mask) exports
[mesa.git] / src / amd / compiler / aco_instruction_selection_setup.cpp
1 /*
2 * Copyright © 2018 Valve 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 DEALINGS
21 * IN THE SOFTWARE.
22 *
23 */
24
25 #include <array>
26 #include <unordered_map>
27 #include "aco_ir.h"
28 #include "nir.h"
29 #include "vulkan/radv_shader.h"
30 #include "vulkan/radv_descriptor_set.h"
31 #include "vulkan/radv_shader_args.h"
32 #include "sid.h"
33 #include "ac_exp_param.h"
34 #include "ac_shader_util.h"
35
36 #include "util/u_math.h"
37
38 #define MAX_INLINE_PUSH_CONSTS 8
39
40 namespace aco {
41
42 struct output_state {
43 uint8_t mask[VARYING_SLOT_VAR31 + 1];
44 Temp outputs[VARYING_SLOT_VAR31 + 1][4];
45 };
46
47 struct isel_context {
48 const struct radv_nir_compiler_options *options;
49 struct radv_shader_args *args;
50 Program *program;
51 nir_shader *shader;
52 uint32_t constant_data_offset;
53 Block *block;
54 bool *divergent_vals;
55 std::unique_ptr<Temp[]> allocated;
56 std::unordered_map<unsigned, std::array<Temp,NIR_MAX_VEC_COMPONENTS>> allocated_vec;
57 Stage stage; /* Stage */
58 bool has_gfx10_wave64_bpermute = false;
59 struct {
60 bool has_branch;
61 uint16_t loop_nest_depth = 0;
62 struct {
63 unsigned header_idx;
64 Block* exit;
65 bool has_divergent_continue = false;
66 bool has_divergent_branch = false;
67 } parent_loop;
68 struct {
69 bool is_divergent = false;
70 } parent_if;
71 bool exec_potentially_empty = false;
72 std::unique_ptr<unsigned[]> nir_to_aco; /* NIR block index to ACO block index */
73 } cf_info;
74
75 Temp arg_temps[AC_MAX_ARGS];
76
77 /* FS inputs */
78 Temp persp_centroid, linear_centroid;
79
80 /* GS inputs */
81 Temp gs_wave_id;
82
83 /* gathered information */
84 uint64_t input_masks[MESA_SHADER_COMPUTE];
85 uint64_t output_masks[MESA_SHADER_COMPUTE];
86
87 /* VS output information */
88 bool export_clip_dists;
89 unsigned num_clip_distances;
90 unsigned num_cull_distances;
91
92 /* VS, FS or GS output information */
93 output_state outputs;
94 };
95
96 Temp get_arg(isel_context *ctx, struct ac_arg arg)
97 {
98 assert(arg.used);
99 return ctx->arg_temps[arg.arg_index];
100 }
101
102 unsigned get_interp_input(nir_intrinsic_op intrin, enum glsl_interp_mode interp)
103 {
104 switch (interp) {
105 case INTERP_MODE_SMOOTH:
106 case INTERP_MODE_NONE:
107 if (intrin == nir_intrinsic_load_barycentric_pixel ||
108 intrin == nir_intrinsic_load_barycentric_at_sample ||
109 intrin == nir_intrinsic_load_barycentric_at_offset)
110 return S_0286CC_PERSP_CENTER_ENA(1);
111 else if (intrin == nir_intrinsic_load_barycentric_centroid)
112 return S_0286CC_PERSP_CENTROID_ENA(1);
113 else if (intrin == nir_intrinsic_load_barycentric_sample)
114 return S_0286CC_PERSP_SAMPLE_ENA(1);
115 break;
116 case INTERP_MODE_NOPERSPECTIVE:
117 if (intrin == nir_intrinsic_load_barycentric_pixel)
118 return S_0286CC_LINEAR_CENTER_ENA(1);
119 else if (intrin == nir_intrinsic_load_barycentric_centroid)
120 return S_0286CC_LINEAR_CENTROID_ENA(1);
121 else if (intrin == nir_intrinsic_load_barycentric_sample)
122 return S_0286CC_LINEAR_SAMPLE_ENA(1);
123 break;
124 default:
125 break;
126 }
127 return 0;
128 }
129
130 void init_context(isel_context *ctx, nir_shader *shader)
131 {
132 nir_function_impl *impl = nir_shader_get_entrypoint(shader);
133 unsigned lane_mask_size = ctx->program->lane_mask.size();
134
135 ctx->shader = shader;
136 ctx->divergent_vals = nir_divergence_analysis(shader, nir_divergence_view_index_uniform);
137
138 std::unique_ptr<Temp[]> allocated{new Temp[impl->ssa_alloc]()};
139
140 unsigned spi_ps_inputs = 0;
141
142 std::unique_ptr<unsigned[]> nir_to_aco{new unsigned[impl->num_blocks]()};
143
144 bool done = false;
145 while (!done) {
146 done = true;
147 nir_foreach_block(block, impl) {
148 nir_foreach_instr(instr, block) {
149 switch(instr->type) {
150 case nir_instr_type_alu: {
151 nir_alu_instr *alu_instr = nir_instr_as_alu(instr);
152 unsigned size = alu_instr->dest.dest.ssa.num_components;
153 if (alu_instr->dest.dest.ssa.bit_size == 64)
154 size *= 2;
155 RegType type = RegType::sgpr;
156 switch(alu_instr->op) {
157 case nir_op_fmul:
158 case nir_op_fadd:
159 case nir_op_fsub:
160 case nir_op_fmax:
161 case nir_op_fmin:
162 case nir_op_fmax3:
163 case nir_op_fmin3:
164 case nir_op_fmed3:
165 case nir_op_fneg:
166 case nir_op_fabs:
167 case nir_op_fsat:
168 case nir_op_fsign:
169 case nir_op_frcp:
170 case nir_op_frsq:
171 case nir_op_fsqrt:
172 case nir_op_fexp2:
173 case nir_op_flog2:
174 case nir_op_ffract:
175 case nir_op_ffloor:
176 case nir_op_fceil:
177 case nir_op_ftrunc:
178 case nir_op_fround_even:
179 case nir_op_fsin:
180 case nir_op_fcos:
181 case nir_op_f2f32:
182 case nir_op_f2f64:
183 case nir_op_u2f32:
184 case nir_op_u2f64:
185 case nir_op_i2f32:
186 case nir_op_i2f64:
187 case nir_op_pack_half_2x16:
188 case nir_op_unpack_half_2x16_split_x:
189 case nir_op_unpack_half_2x16_split_y:
190 case nir_op_fddx:
191 case nir_op_fddy:
192 case nir_op_fddx_fine:
193 case nir_op_fddy_fine:
194 case nir_op_fddx_coarse:
195 case nir_op_fddy_coarse:
196 case nir_op_fquantize2f16:
197 case nir_op_ldexp:
198 case nir_op_frexp_sig:
199 case nir_op_frexp_exp:
200 case nir_op_cube_face_index:
201 case nir_op_cube_face_coord:
202 type = RegType::vgpr;
203 break;
204 case nir_op_flt:
205 case nir_op_fge:
206 case nir_op_feq:
207 case nir_op_fne:
208 case nir_op_ilt:
209 case nir_op_ige:
210 case nir_op_ult:
211 case nir_op_uge:
212 case nir_op_ieq:
213 case nir_op_ine:
214 case nir_op_i2b1:
215 size = lane_mask_size;
216 break;
217 case nir_op_f2i64:
218 case nir_op_f2u64:
219 case nir_op_b2i32:
220 case nir_op_b2f32:
221 case nir_op_f2i32:
222 case nir_op_f2u32:
223 type = ctx->divergent_vals[alu_instr->dest.dest.ssa.index] ? RegType::vgpr : RegType::sgpr;
224 break;
225 case nir_op_bcsel:
226 if (alu_instr->dest.dest.ssa.bit_size == 1) {
227 size = lane_mask_size;
228 } else {
229 if (ctx->divergent_vals[alu_instr->dest.dest.ssa.index]) {
230 type = RegType::vgpr;
231 } else {
232 if (allocated[alu_instr->src[1].src.ssa->index].type() == RegType::vgpr ||
233 allocated[alu_instr->src[2].src.ssa->index].type() == RegType::vgpr) {
234 type = RegType::vgpr;
235 }
236 }
237 if (alu_instr->src[1].src.ssa->num_components == 1 && alu_instr->src[2].src.ssa->num_components == 1) {
238 assert(allocated[alu_instr->src[1].src.ssa->index].size() == allocated[alu_instr->src[2].src.ssa->index].size());
239 size = allocated[alu_instr->src[1].src.ssa->index].size();
240 }
241 }
242 break;
243 case nir_op_mov:
244 if (alu_instr->dest.dest.ssa.bit_size == 1) {
245 size = lane_mask_size;
246 } else {
247 type = ctx->divergent_vals[alu_instr->dest.dest.ssa.index] ? RegType::vgpr : RegType::sgpr;
248 }
249 break;
250 default:
251 if (alu_instr->dest.dest.ssa.bit_size == 1) {
252 size = lane_mask_size;
253 } else {
254 for (unsigned i = 0; i < nir_op_infos[alu_instr->op].num_inputs; i++) {
255 if (allocated[alu_instr->src[i].src.ssa->index].type() == RegType::vgpr)
256 type = RegType::vgpr;
257 }
258 }
259 break;
260 }
261 allocated[alu_instr->dest.dest.ssa.index] = Temp(0, RegClass(type, size));
262 break;
263 }
264 case nir_instr_type_load_const: {
265 unsigned size = nir_instr_as_load_const(instr)->def.num_components;
266 if (nir_instr_as_load_const(instr)->def.bit_size == 64)
267 size *= 2;
268 else if (nir_instr_as_load_const(instr)->def.bit_size == 1)
269 size *= lane_mask_size;
270 allocated[nir_instr_as_load_const(instr)->def.index] = Temp(0, RegClass(RegType::sgpr, size));
271 break;
272 }
273 case nir_instr_type_intrinsic: {
274 nir_intrinsic_instr *intrinsic = nir_instr_as_intrinsic(instr);
275 if (!nir_intrinsic_infos[intrinsic->intrinsic].has_dest)
276 break;
277 unsigned size = intrinsic->dest.ssa.num_components;
278 if (intrinsic->dest.ssa.bit_size == 64)
279 size *= 2;
280 RegType type = RegType::sgpr;
281 switch(intrinsic->intrinsic) {
282 case nir_intrinsic_load_push_constant:
283 case nir_intrinsic_load_work_group_id:
284 case nir_intrinsic_load_num_work_groups:
285 case nir_intrinsic_load_subgroup_id:
286 case nir_intrinsic_load_num_subgroups:
287 case nir_intrinsic_load_first_vertex:
288 case nir_intrinsic_load_base_instance:
289 case nir_intrinsic_get_buffer_size:
290 case nir_intrinsic_vote_all:
291 case nir_intrinsic_vote_any:
292 case nir_intrinsic_read_first_invocation:
293 case nir_intrinsic_read_invocation:
294 case nir_intrinsic_first_invocation:
295 type = RegType::sgpr;
296 if (intrinsic->dest.ssa.bit_size == 1)
297 size = lane_mask_size;
298 break;
299 case nir_intrinsic_ballot:
300 type = RegType::sgpr;
301 break;
302 case nir_intrinsic_load_sample_id:
303 case nir_intrinsic_load_sample_mask_in:
304 case nir_intrinsic_load_input:
305 case nir_intrinsic_load_per_vertex_input:
306 case nir_intrinsic_load_vertex_id:
307 case nir_intrinsic_load_vertex_id_zero_base:
308 case nir_intrinsic_load_barycentric_sample:
309 case nir_intrinsic_load_barycentric_pixel:
310 case nir_intrinsic_load_barycentric_centroid:
311 case nir_intrinsic_load_barycentric_at_sample:
312 case nir_intrinsic_load_barycentric_at_offset:
313 case nir_intrinsic_load_interpolated_input:
314 case nir_intrinsic_load_frag_coord:
315 case nir_intrinsic_load_sample_pos:
316 case nir_intrinsic_load_layer_id:
317 case nir_intrinsic_load_local_invocation_id:
318 case nir_intrinsic_load_local_invocation_index:
319 case nir_intrinsic_load_subgroup_invocation:
320 case nir_intrinsic_write_invocation_amd:
321 case nir_intrinsic_mbcnt_amd:
322 case nir_intrinsic_load_instance_id:
323 case nir_intrinsic_ssbo_atomic_add:
324 case nir_intrinsic_ssbo_atomic_imin:
325 case nir_intrinsic_ssbo_atomic_umin:
326 case nir_intrinsic_ssbo_atomic_imax:
327 case nir_intrinsic_ssbo_atomic_umax:
328 case nir_intrinsic_ssbo_atomic_and:
329 case nir_intrinsic_ssbo_atomic_or:
330 case nir_intrinsic_ssbo_atomic_xor:
331 case nir_intrinsic_ssbo_atomic_exchange:
332 case nir_intrinsic_ssbo_atomic_comp_swap:
333 case nir_intrinsic_global_atomic_add:
334 case nir_intrinsic_global_atomic_imin:
335 case nir_intrinsic_global_atomic_umin:
336 case nir_intrinsic_global_atomic_imax:
337 case nir_intrinsic_global_atomic_umax:
338 case nir_intrinsic_global_atomic_and:
339 case nir_intrinsic_global_atomic_or:
340 case nir_intrinsic_global_atomic_xor:
341 case nir_intrinsic_global_atomic_exchange:
342 case nir_intrinsic_global_atomic_comp_swap:
343 case nir_intrinsic_image_deref_atomic_add:
344 case nir_intrinsic_image_deref_atomic_umin:
345 case nir_intrinsic_image_deref_atomic_imin:
346 case nir_intrinsic_image_deref_atomic_umax:
347 case nir_intrinsic_image_deref_atomic_imax:
348 case nir_intrinsic_image_deref_atomic_and:
349 case nir_intrinsic_image_deref_atomic_or:
350 case nir_intrinsic_image_deref_atomic_xor:
351 case nir_intrinsic_image_deref_atomic_exchange:
352 case nir_intrinsic_image_deref_atomic_comp_swap:
353 case nir_intrinsic_image_deref_size:
354 case nir_intrinsic_shared_atomic_add:
355 case nir_intrinsic_shared_atomic_imin:
356 case nir_intrinsic_shared_atomic_umin:
357 case nir_intrinsic_shared_atomic_imax:
358 case nir_intrinsic_shared_atomic_umax:
359 case nir_intrinsic_shared_atomic_and:
360 case nir_intrinsic_shared_atomic_or:
361 case nir_intrinsic_shared_atomic_xor:
362 case nir_intrinsic_shared_atomic_exchange:
363 case nir_intrinsic_shared_atomic_comp_swap:
364 case nir_intrinsic_load_scratch:
365 case nir_intrinsic_load_invocation_id:
366 case nir_intrinsic_load_primitive_id:
367 type = RegType::vgpr;
368 break;
369 case nir_intrinsic_shuffle:
370 case nir_intrinsic_quad_broadcast:
371 case nir_intrinsic_quad_swap_horizontal:
372 case nir_intrinsic_quad_swap_vertical:
373 case nir_intrinsic_quad_swap_diagonal:
374 case nir_intrinsic_quad_swizzle_amd:
375 case nir_intrinsic_masked_swizzle_amd:
376 case nir_intrinsic_inclusive_scan:
377 case nir_intrinsic_exclusive_scan:
378 if (intrinsic->dest.ssa.bit_size == 1) {
379 size = lane_mask_size;
380 type = RegType::sgpr;
381 } else if (!ctx->divergent_vals[intrinsic->dest.ssa.index]) {
382 type = RegType::sgpr;
383 } else {
384 type = RegType::vgpr;
385 }
386 break;
387 case nir_intrinsic_load_view_index:
388 type = ctx->stage == fragment_fs ? RegType::vgpr : RegType::sgpr;
389 break;
390 case nir_intrinsic_load_front_face:
391 case nir_intrinsic_load_helper_invocation:
392 case nir_intrinsic_is_helper_invocation:
393 type = RegType::sgpr;
394 size = lane_mask_size;
395 break;
396 case nir_intrinsic_reduce:
397 if (intrinsic->dest.ssa.bit_size == 1) {
398 size = lane_mask_size;
399 type = RegType::sgpr;
400 } else if (!ctx->divergent_vals[intrinsic->dest.ssa.index]) {
401 type = RegType::sgpr;
402 } else {
403 type = RegType::vgpr;
404 }
405 break;
406 case nir_intrinsic_load_ubo:
407 case nir_intrinsic_load_ssbo:
408 case nir_intrinsic_load_global:
409 case nir_intrinsic_vulkan_resource_index:
410 type = ctx->divergent_vals[intrinsic->dest.ssa.index] ? RegType::vgpr : RegType::sgpr;
411 break;
412 /* due to copy propagation, the swizzled imov is removed if num dest components == 1 */
413 case nir_intrinsic_load_shared:
414 if (ctx->divergent_vals[intrinsic->dest.ssa.index])
415 type = RegType::vgpr;
416 else
417 type = RegType::sgpr;
418 break;
419 default:
420 for (unsigned i = 0; i < nir_intrinsic_infos[intrinsic->intrinsic].num_srcs; i++) {
421 if (allocated[intrinsic->src[i].ssa->index].type() == RegType::vgpr)
422 type = RegType::vgpr;
423 }
424 break;
425 }
426 allocated[intrinsic->dest.ssa.index] = Temp(0, RegClass(type, size));
427
428 switch(intrinsic->intrinsic) {
429 case nir_intrinsic_load_barycentric_sample:
430 case nir_intrinsic_load_barycentric_pixel:
431 case nir_intrinsic_load_barycentric_centroid:
432 case nir_intrinsic_load_barycentric_at_sample:
433 case nir_intrinsic_load_barycentric_at_offset: {
434 glsl_interp_mode mode = (glsl_interp_mode)nir_intrinsic_interp_mode(intrinsic);
435 spi_ps_inputs |= get_interp_input(intrinsic->intrinsic, mode);
436 break;
437 }
438 case nir_intrinsic_load_front_face:
439 spi_ps_inputs |= S_0286CC_FRONT_FACE_ENA(1);
440 break;
441 case nir_intrinsic_load_frag_coord:
442 case nir_intrinsic_load_sample_pos: {
443 uint8_t mask = nir_ssa_def_components_read(&intrinsic->dest.ssa);
444 for (unsigned i = 0; i < 4; i++) {
445 if (mask & (1 << i))
446 spi_ps_inputs |= S_0286CC_POS_X_FLOAT_ENA(1) << i;
447
448 }
449 break;
450 }
451 case nir_intrinsic_load_sample_id:
452 spi_ps_inputs |= S_0286CC_ANCILLARY_ENA(1);
453 break;
454 case nir_intrinsic_load_sample_mask_in:
455 spi_ps_inputs |= S_0286CC_ANCILLARY_ENA(1);
456 spi_ps_inputs |= S_0286CC_SAMPLE_COVERAGE_ENA(1);
457 break;
458 default:
459 break;
460 }
461 break;
462 }
463 case nir_instr_type_tex: {
464 nir_tex_instr* tex = nir_instr_as_tex(instr);
465 unsigned size = tex->dest.ssa.num_components;
466
467 if (tex->dest.ssa.bit_size == 64)
468 size *= 2;
469 if (tex->op == nir_texop_texture_samples)
470 assert(!ctx->divergent_vals[tex->dest.ssa.index]);
471 if (ctx->divergent_vals[tex->dest.ssa.index])
472 allocated[tex->dest.ssa.index] = Temp(0, RegClass(RegType::vgpr, size));
473 else
474 allocated[tex->dest.ssa.index] = Temp(0, RegClass(RegType::sgpr, size));
475 break;
476 }
477 case nir_instr_type_parallel_copy: {
478 nir_foreach_parallel_copy_entry(entry, nir_instr_as_parallel_copy(instr)) {
479 allocated[entry->dest.ssa.index] = allocated[entry->src.ssa->index];
480 }
481 break;
482 }
483 case nir_instr_type_ssa_undef: {
484 unsigned size = nir_instr_as_ssa_undef(instr)->def.num_components;
485 if (nir_instr_as_ssa_undef(instr)->def.bit_size == 64)
486 size *= 2;
487 allocated[nir_instr_as_ssa_undef(instr)->def.index] = Temp(0, RegClass(RegType::sgpr, size));
488 break;
489 }
490 case nir_instr_type_phi: {
491 nir_phi_instr* phi = nir_instr_as_phi(instr);
492 RegType type;
493 unsigned size = phi->dest.ssa.num_components;
494
495 if (phi->dest.ssa.bit_size == 1) {
496 assert(size == 1 && "multiple components not yet supported on boolean phis.");
497 type = RegType::sgpr;
498 size *= lane_mask_size;
499 allocated[phi->dest.ssa.index] = Temp(0, RegClass(type, size));
500 break;
501 }
502
503 if (ctx->divergent_vals[phi->dest.ssa.index]) {
504 type = RegType::vgpr;
505 } else {
506 type = RegType::sgpr;
507 nir_foreach_phi_src (src, phi) {
508 if (allocated[src->src.ssa->index].type() == RegType::vgpr)
509 type = RegType::vgpr;
510 if (allocated[src->src.ssa->index].type() == RegType::none)
511 done = false;
512 }
513 }
514
515 size *= phi->dest.ssa.bit_size == 64 ? 2 : 1;
516 RegClass rc = RegClass(type, size);
517 if (rc != allocated[phi->dest.ssa.index].regClass()) {
518 done = false;
519 } else {
520 nir_foreach_phi_src(src, phi)
521 assert(allocated[src->src.ssa->index].size() == rc.size());
522 }
523 allocated[phi->dest.ssa.index] = Temp(0, rc);
524 break;
525 }
526 default:
527 break;
528 }
529 }
530 }
531 }
532
533 if (G_0286CC_POS_W_FLOAT_ENA(spi_ps_inputs)) {
534 /* If POS_W_FLOAT (11) is enabled, at least one of PERSP_* must be enabled too */
535 spi_ps_inputs |= S_0286CC_PERSP_CENTER_ENA(1);
536 }
537
538 if (!(spi_ps_inputs & 0x7F)) {
539 /* At least one of PERSP_* (0xF) or LINEAR_* (0x70) must be enabled */
540 spi_ps_inputs |= S_0286CC_PERSP_CENTER_ENA(1);
541 }
542
543 ctx->program->config->spi_ps_input_ena = spi_ps_inputs;
544 ctx->program->config->spi_ps_input_addr = spi_ps_inputs;
545
546 for (unsigned i = 0; i < impl->ssa_alloc; i++)
547 allocated[i] = Temp(ctx->program->allocateId(), allocated[i].regClass());
548
549 ctx->allocated.reset(allocated.release());
550 ctx->cf_info.nir_to_aco.reset(nir_to_aco.release());
551 }
552
553 Pseudo_instruction *add_startpgm(struct isel_context *ctx)
554 {
555 unsigned arg_count = ctx->args->ac.arg_count;
556 if (ctx->stage == fragment_fs) {
557 /* LLVM optimizes away unused FS inputs and computes spi_ps_input_addr
558 * itself and then communicates the results back via the ELF binary.
559 * Mirror what LLVM does by re-mapping the VGPR arguments here.
560 *
561 * TODO: If we made the FS input scanning code into a separate pass that
562 * could run before argument setup, then this wouldn't be necessary
563 * anymore.
564 */
565 struct ac_shader_args *args = &ctx->args->ac;
566 arg_count = 0;
567 for (unsigned i = 0, vgpr_arg = 0, vgpr_reg = 0; i < args->arg_count; i++) {
568 if (args->args[i].file != AC_ARG_VGPR) {
569 arg_count++;
570 continue;
571 }
572
573 if (!(ctx->program->config->spi_ps_input_addr & (1 << vgpr_arg))) {
574 args->args[i].skip = true;
575 } else {
576 args->args[i].offset = vgpr_reg;
577 vgpr_reg += args->args[i].size;
578 arg_count++;
579 }
580 vgpr_arg++;
581 }
582 }
583
584 aco_ptr<Pseudo_instruction> startpgm{create_instruction<Pseudo_instruction>(aco_opcode::p_startpgm, Format::PSEUDO, 0, arg_count + 1)};
585 for (unsigned i = 0, arg = 0; i < ctx->args->ac.arg_count; i++) {
586 if (ctx->args->ac.args[i].skip)
587 continue;
588
589 enum ac_arg_regfile file = ctx->args->ac.args[i].file;
590 unsigned size = ctx->args->ac.args[i].size;
591 unsigned reg = ctx->args->ac.args[i].offset;
592 RegClass type = RegClass(file == AC_ARG_SGPR ? RegType::sgpr : RegType::vgpr, size);
593 Temp dst = Temp{ctx->program->allocateId(), type};
594 ctx->arg_temps[i] = dst;
595 startpgm->definitions[arg] = Definition(dst);
596 startpgm->definitions[arg].setFixed(PhysReg{file == AC_ARG_SGPR ? reg : reg + 256});
597 arg++;
598 }
599 startpgm->definitions[arg_count] = Definition{ctx->program->allocateId(), exec, ctx->program->lane_mask};
600 Pseudo_instruction *instr = startpgm.get();
601 ctx->block->instructions.push_back(std::move(startpgm));
602
603 /* Stash these in the program so that they can be accessed later when
604 * handling spilling.
605 */
606 ctx->program->private_segment_buffer = get_arg(ctx, ctx->args->ring_offsets);
607 ctx->program->scratch_offset = get_arg(ctx, ctx->args->scratch_offset);
608
609 return instr;
610 }
611
612 int
613 type_size(const struct glsl_type *type, bool bindless)
614 {
615 // TODO: don't we need type->std430_base_alignment() here?
616 return glsl_count_attribute_slots(type, false);
617 }
618
619 void
620 shared_var_info(const struct glsl_type *type, unsigned *size, unsigned *align)
621 {
622 assert(glsl_type_is_vector_or_scalar(type));
623
624 uint32_t comp_size = glsl_type_is_boolean(type)
625 ? 4 : glsl_get_bit_size(type) / 8;
626 unsigned length = glsl_get_vector_elements(type);
627 *size = comp_size * length,
628 *align = comp_size;
629 }
630
631 static bool
632 mem_vectorize_callback(unsigned align, unsigned bit_size,
633 unsigned num_components, unsigned high_offset,
634 nir_intrinsic_instr *low, nir_intrinsic_instr *high)
635 {
636 if ((bit_size != 32 && bit_size != 64) || num_components > 4)
637 return false;
638
639 /* >128 bit loads are split except with SMEM */
640 if (bit_size * num_components > 128)
641 return false;
642
643 switch (low->intrinsic) {
644 case nir_intrinsic_load_ubo:
645 case nir_intrinsic_load_ssbo:
646 case nir_intrinsic_store_ssbo:
647 case nir_intrinsic_load_push_constant:
648 return align % 4 == 0;
649 case nir_intrinsic_load_deref:
650 case nir_intrinsic_store_deref:
651 assert(nir_src_as_deref(low->src[0])->mode == nir_var_mem_shared);
652 /* fallthrough */
653 case nir_intrinsic_load_shared:
654 case nir_intrinsic_store_shared:
655 if (bit_size * num_components > 64) /* 96 and 128 bit loads require 128 bit alignment and are split otherwise */
656 return align % 16 == 0;
657 else
658 return align % 4 == 0;
659 default:
660 return false;
661 }
662 return false;
663 }
664
665 void
666 setup_vs_output_info(isel_context *ctx, nir_shader *nir,
667 bool export_prim_id, bool export_clip_dists,
668 radv_vs_output_info *outinfo)
669 {
670 memset(outinfo->vs_output_param_offset, AC_EXP_PARAM_UNDEFINED,
671 sizeof(outinfo->vs_output_param_offset));
672
673 outinfo->param_exports = 0;
674 int pos_written = 0x1;
675 if (outinfo->writes_pointsize || outinfo->writes_viewport_index || outinfo->writes_layer)
676 pos_written |= 1 << 1;
677
678 uint64_t mask = ctx->output_masks[nir->info.stage];
679 while (mask) {
680 int idx = u_bit_scan64(&mask);
681 if (idx >= VARYING_SLOT_VAR0 || idx == VARYING_SLOT_LAYER || idx == VARYING_SLOT_PRIMITIVE_ID ||
682 ((idx == VARYING_SLOT_CLIP_DIST0 || idx == VARYING_SLOT_CLIP_DIST1) && export_clip_dists)) {
683 if (outinfo->vs_output_param_offset[idx] == AC_EXP_PARAM_UNDEFINED)
684 outinfo->vs_output_param_offset[idx] = outinfo->param_exports++;
685 }
686 }
687 if (outinfo->writes_layer &&
688 outinfo->vs_output_param_offset[VARYING_SLOT_LAYER] == AC_EXP_PARAM_UNDEFINED) {
689 /* when ctx->options->key.has_multiview_view_index = true, the layer
690 * variable isn't declared in NIR and it's isel's job to get the layer */
691 outinfo->vs_output_param_offset[VARYING_SLOT_LAYER] = outinfo->param_exports++;
692 }
693
694 if (export_prim_id) {
695 assert(outinfo->vs_output_param_offset[VARYING_SLOT_PRIMITIVE_ID] == AC_EXP_PARAM_UNDEFINED);
696 outinfo->vs_output_param_offset[VARYING_SLOT_PRIMITIVE_ID] = outinfo->param_exports++;
697 }
698
699 ctx->export_clip_dists = export_clip_dists;
700 ctx->num_clip_distances = util_bitcount(outinfo->clip_dist_mask);
701 ctx->num_cull_distances = util_bitcount(outinfo->cull_dist_mask);
702
703 assert(ctx->num_clip_distances + ctx->num_cull_distances <= 8);
704
705 if (ctx->num_clip_distances + ctx->num_cull_distances > 0)
706 pos_written |= 1 << 2;
707 if (ctx->num_clip_distances + ctx->num_cull_distances > 4)
708 pos_written |= 1 << 3;
709
710 outinfo->pos_exports = util_bitcount(pos_written);
711 }
712
713 void
714 setup_vs_variables(isel_context *ctx, nir_shader *nir)
715 {
716 nir_foreach_variable(variable, &nir->inputs)
717 {
718 variable->data.driver_location = variable->data.location * 4;
719 }
720 nir_foreach_variable(variable, &nir->outputs)
721 {
722 if (ctx->stage == vertex_geometry_gs)
723 variable->data.driver_location = util_bitcount64(ctx->output_masks[nir->info.stage] & ((1ull << variable->data.location) - 1ull)) * 4;
724 else if (ctx->stage == vertex_es)
725 //TODO: make this more compact
726 variable->data.driver_location = shader_io_get_unique_index((gl_varying_slot)variable->data.location) * 4;
727 else
728 variable->data.driver_location = variable->data.location * 4;
729 }
730
731 if (ctx->stage == vertex_vs) {
732 radv_vs_output_info *outinfo = &ctx->program->info->vs.outinfo;
733 setup_vs_output_info(ctx, nir, outinfo->export_prim_id,
734 ctx->options->key.vs_common_out.export_clip_dists, outinfo);
735 } else if (ctx->stage == vertex_geometry_gs || ctx->stage == vertex_es) {
736 /* TODO: radv_nir_shader_info_pass() already sets this but it's larger
737 * than it needs to be in order to set it better, we have to improve
738 * radv_nir_shader_info_pass() because gfx9_get_gs_info() uses
739 * esgs_itemsize and has to be done before compilation
740 */
741 /* radv_es_output_info *outinfo = &ctx->program->info->vs.es_info;
742 outinfo->esgs_itemsize = util_bitcount64(ctx->output_masks[nir->info.stage]) * 16u; */
743 }
744 }
745
746 void
747 setup_variables(isel_context *ctx, nir_shader *nir)
748 {
749 switch (nir->info.stage) {
750 case MESA_SHADER_FRAGMENT: {
751 nir_foreach_variable(variable, &nir->outputs)
752 {
753 int idx = variable->data.location + variable->data.index;
754 variable->data.driver_location = idx * 4;
755 }
756 break;
757 }
758 case MESA_SHADER_COMPUTE: {
759 ctx->program->config->lds_size = (nir->info.cs.shared_size + ctx->program->lds_alloc_granule - 1) /
760 ctx->program->lds_alloc_granule;
761 break;
762 }
763 case MESA_SHADER_VERTEX: {
764 setup_vs_variables(ctx, nir);
765 break;
766 }
767 case MESA_SHADER_GEOMETRY: {
768 assert(ctx->stage == vertex_geometry_gs || ctx->stage == geometry_gs);
769 if (ctx->stage == vertex_geometry_gs) {
770 nir_foreach_variable(variable, &nir->inputs) {
771 variable->data.driver_location = util_bitcount64(ctx->input_masks[nir->info.stage] & ((1ull << variable->data.location) - 1ull)) * 4;
772 }
773 } else {
774 //TODO: make this more compact
775 nir_foreach_variable(variable, &nir->inputs) {
776 variable->data.driver_location = shader_io_get_unique_index((gl_varying_slot)variable->data.location) * 4;
777 }
778 }
779 nir_foreach_variable(variable, &nir->outputs) {
780 variable->data.driver_location = variable->data.location * 4;
781 }
782 if (ctx->stage == vertex_geometry_gs)
783 ctx->program->info->gs.es_type = MESA_SHADER_VERTEX; /* tesselation shaders are not yet supported */
784 break;
785 }
786 default:
787 unreachable("Unhandled shader stage.");
788 }
789 }
790
791 void
792 get_io_masks(isel_context *ctx, unsigned shader_count, struct nir_shader *const *shaders)
793 {
794 for (unsigned i = 0; i < shader_count; i++) {
795 nir_shader *nir = shaders[i];
796 if (nir->info.stage == MESA_SHADER_COMPUTE)
797 continue;
798
799 uint64_t output_mask = 0;
800 nir_foreach_variable(variable, &nir->outputs) {
801 const glsl_type *type = variable->type;
802 if (nir_is_per_vertex_io(variable, nir->info.stage))
803 type = type->fields.array;
804 unsigned slots = type->count_attribute_slots(false);
805 if (variable->data.compact) {
806 unsigned component_count = variable->data.location_frac + type->length;
807 slots = (component_count + 3) / 4;
808 }
809 output_mask |= ((1ull << slots) - 1) << variable->data.location;
810 }
811
812 uint64_t input_mask = 0;
813 nir_foreach_variable(variable, &nir->inputs) {
814 const glsl_type *type = variable->type;
815 if (nir_is_per_vertex_io(variable, nir->info.stage))
816 type = type->fields.array;
817 unsigned slots = type->count_attribute_slots(false);
818 if (variable->data.compact) {
819 unsigned component_count = variable->data.location_frac + type->length;
820 slots = (component_count + 3) / 4;
821 }
822 input_mask |= ((1ull << slots) - 1) << variable->data.location;
823 }
824
825 ctx->output_masks[nir->info.stage] |= output_mask;
826 if (i + 1 < shader_count)
827 ctx->input_masks[shaders[i + 1]->info.stage] |= output_mask;
828
829 ctx->input_masks[nir->info.stage] |= input_mask;
830 if (i)
831 ctx->output_masks[shaders[i - 1]->info.stage] |= input_mask;
832 }
833 }
834
835 void
836 setup_nir(isel_context *ctx, nir_shader *nir)
837 {
838 Program *program = ctx->program;
839
840 /* align and copy constant data */
841 while (program->constant_data.size() % 4u)
842 program->constant_data.push_back(0);
843 ctx->constant_data_offset = program->constant_data.size();
844 program->constant_data.insert(program->constant_data.end(),
845 (uint8_t*)nir->constant_data,
846 (uint8_t*)nir->constant_data + nir->constant_data_size);
847
848 /* the variable setup has to be done before lower_io / CSE */
849 setup_variables(ctx, nir);
850
851 /* optimize and lower memory operations */
852 bool lower_to_scalar = false;
853 bool lower_pack = false;
854 if (nir_opt_load_store_vectorize(nir,
855 (nir_variable_mode)(nir_var_mem_ssbo | nir_var_mem_ubo |
856 nir_var_mem_push_const | nir_var_mem_shared),
857 mem_vectorize_callback)) {
858 lower_to_scalar = true;
859 lower_pack = true;
860 }
861 if (nir->info.stage != MESA_SHADER_COMPUTE)
862 nir_lower_io(nir, (nir_variable_mode)(nir_var_shader_in | nir_var_shader_out), type_size, (nir_lower_io_options)0);
863 nir_lower_explicit_io(nir, nir_var_mem_global, nir_address_format_64bit_global);
864
865 if (lower_to_scalar)
866 nir_lower_alu_to_scalar(nir, NULL, NULL);
867 if (lower_pack)
868 nir_lower_pack(nir);
869
870 /* lower ALU operations */
871 // TODO: implement logic64 in aco, it's more effective for sgprs
872 nir_lower_int64(nir, nir->options->lower_int64_options);
873
874 nir_opt_idiv_const(nir, 32);
875 nir_lower_idiv(nir, nir_lower_idiv_precise);
876
877 /* optimize the lowered ALU operations */
878 bool more_algebraic = true;
879 while (more_algebraic) {
880 more_algebraic = false;
881 NIR_PASS_V(nir, nir_copy_prop);
882 NIR_PASS_V(nir, nir_opt_dce);
883 NIR_PASS_V(nir, nir_opt_constant_folding);
884 NIR_PASS(more_algebraic, nir, nir_opt_algebraic);
885 }
886
887 /* cleanup passes */
888 nir_lower_load_const_to_scalar(nir);
889 nir_opt_shrink_load(nir);
890 nir_move_options move_opts = (nir_move_options)(
891 nir_move_const_undef | nir_move_load_ubo | nir_move_load_input |
892 nir_move_comparisons | nir_move_copies);
893 nir_opt_sink(nir, move_opts);
894 nir_opt_move(nir, move_opts);
895 nir_convert_to_lcssa(nir, true, false);
896 nir_lower_phis_to_scalar(nir);
897
898 nir_function_impl *func = nir_shader_get_entrypoint(nir);
899 nir_index_ssa_defs(func);
900 nir_metadata_require(func, nir_metadata_block_index);
901 }
902
903 isel_context
904 setup_isel_context(Program* program,
905 unsigned shader_count,
906 struct nir_shader *const *shaders,
907 ac_shader_config* config,
908 struct radv_shader_args *args,
909 bool is_gs_copy_shader)
910 {
911 program->stage = 0;
912 for (unsigned i = 0; i < shader_count; i++) {
913 switch (shaders[i]->info.stage) {
914 case MESA_SHADER_VERTEX:
915 program->stage |= sw_vs;
916 break;
917 case MESA_SHADER_TESS_CTRL:
918 program->stage |= sw_tcs;
919 break;
920 case MESA_SHADER_TESS_EVAL:
921 program->stage |= sw_tes;
922 break;
923 case MESA_SHADER_GEOMETRY:
924 program->stage |= is_gs_copy_shader ? sw_gs_copy : sw_gs;
925 break;
926 case MESA_SHADER_FRAGMENT:
927 program->stage |= sw_fs;
928 break;
929 case MESA_SHADER_COMPUTE:
930 program->stage |= sw_cs;
931 break;
932 default:
933 unreachable("Shader stage not implemented");
934 }
935 }
936 bool gfx9_plus = args->options->chip_class >= GFX9;
937 bool ngg = args->shader_info->is_ngg && args->options->chip_class >= GFX10;
938 if (program->stage == sw_vs && args->shader_info->vs.as_es)
939 program->stage |= hw_es;
940 else if (program->stage == sw_vs && !args->shader_info->vs.as_ls)
941 program->stage |= hw_vs;
942 else if (program->stage == sw_gs)
943 program->stage |= hw_gs;
944 else if (program->stage == sw_fs)
945 program->stage |= hw_fs;
946 else if (program->stage == sw_cs)
947 program->stage |= hw_cs;
948 else if (program->stage == sw_gs_copy)
949 program->stage |= hw_vs;
950 else if (program->stage == (sw_vs | sw_gs) && gfx9_plus && !ngg)
951 program->stage |= hw_gs;
952 else
953 unreachable("Shader stage not implemented");
954
955 program->config = config;
956 program->info = args->shader_info;
957 program->chip_class = args->options->chip_class;
958 program->family = args->options->family;
959 program->wave_size = args->shader_info->wave_size;
960 program->lane_mask = program->wave_size == 32 ? s1 : s2;
961
962 program->lds_alloc_granule = args->options->chip_class >= GFX7 ? 512 : 256;
963 program->lds_limit = args->options->chip_class >= GFX7 ? 65536 : 32768;
964 program->vgpr_limit = 256;
965 program->vgpr_alloc_granule = 3;
966
967 if (args->options->chip_class >= GFX10) {
968 program->physical_sgprs = 2560; /* doesn't matter as long as it's at least 128 * 20 */
969 program->sgpr_alloc_granule = 127;
970 program->sgpr_limit = 106;
971 program->vgpr_alloc_granule = program->wave_size == 32 ? 7 : 3;
972 } else if (program->chip_class >= GFX8) {
973 program->physical_sgprs = 800;
974 program->sgpr_alloc_granule = 15;
975 if (args->options->family == CHIP_TONGA || args->options->family == CHIP_ICELAND)
976 program->sgpr_limit = 94; /* workaround hardware bug */
977 else
978 program->sgpr_limit = 102;
979 } else {
980 program->physical_sgprs = 512;
981 program->sgpr_alloc_granule = 7;
982 program->sgpr_limit = 104;
983 }
984
985 /* TODO: we don't have to allocate VCC if we don't need it */
986 program->needs_vcc = true;
987
988 calc_min_waves(program);
989 program->vgpr_limit = get_addr_vgpr_from_waves(program, program->min_waves);
990 program->sgpr_limit = get_addr_sgpr_from_waves(program, program->min_waves);
991
992 isel_context ctx = {};
993 ctx.program = program;
994 ctx.args = args;
995 ctx.options = args->options;
996 ctx.stage = program->stage;
997
998 get_io_masks(&ctx, shader_count, shaders);
999
1000 unsigned scratch_size = 0;
1001 if (program->stage == gs_copy_vs) {
1002 assert(shader_count == 1);
1003 setup_vs_output_info(&ctx, shaders[0], false, true, &args->shader_info->vs.outinfo);
1004 } else {
1005 for (unsigned i = 0; i < shader_count; i++) {
1006 nir_shader *nir = shaders[i];
1007 setup_nir(&ctx, nir);
1008
1009 if (args->options->dump_preoptir) {
1010 fprintf(stderr, "NIR shader before instruction selection:\n");
1011 nir_print_shader(nir, stderr);
1012 }
1013 }
1014
1015 for (unsigned i = 0; i < shader_count; i++)
1016 scratch_size = std::max(scratch_size, shaders[i]->scratch_size);
1017 }
1018
1019 ctx.program->config->scratch_bytes_per_wave = align(scratch_size * ctx.program->wave_size, 1024);
1020
1021 ctx.block = ctx.program->create_and_insert_block();
1022 ctx.block->loop_nest_depth = 0;
1023 ctx.block->kind = block_kind_top_level;
1024
1025 return ctx;
1026 }
1027
1028 }