radv: Move radv_nir_export_multiview to new file.
Also ran clang-format on the affected code. Signed-off-by: Timur Kristóf <timur.kristof@gmail.com> Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21971>
This commit is contained in:
@@ -1455,20 +1455,6 @@ get_vs_output_info(const struct radv_graphics_pipeline *pipeline)
|
||||
return &radv_get_last_vgt_shader(pipeline)->info.outinfo;
|
||||
}
|
||||
|
||||
static nir_variable *
|
||||
find_layer_out_var(nir_shader *nir)
|
||||
{
|
||||
nir_variable *var = nir_find_variable_with_location(nir, nir_var_shader_out, VARYING_SLOT_LAYER);
|
||||
if (var != NULL)
|
||||
return var;
|
||||
|
||||
var = nir_variable_create(nir, nir_var_shader_out, glsl_int_type(), "layer id");
|
||||
var->data.location = VARYING_SLOT_LAYER;
|
||||
var->data.interpolation = INTERP_MODE_NONE;
|
||||
|
||||
return var;
|
||||
}
|
||||
|
||||
static bool
|
||||
radv_should_export_multiview(const struct radv_pipeline_stage *producer,
|
||||
const struct radv_pipeline_stage *consumer,
|
||||
@@ -1482,74 +1468,6 @@ radv_should_export_multiview(const struct radv_pipeline_stage *producer,
|
||||
!(producer->nir->info.outputs_written & VARYING_BIT_LAYER);
|
||||
}
|
||||
|
||||
static bool
|
||||
radv_export_multiview(nir_shader *nir)
|
||||
{
|
||||
nir_function_impl *impl = nir_shader_get_entrypoint(nir);
|
||||
bool progress = false;
|
||||
|
||||
nir_builder b;
|
||||
nir_builder_init(&b, impl);
|
||||
|
||||
/* This pass is not suitable for mesh shaders, because it can't know the mapping between API mesh
|
||||
* shader invocations and output primitives. Needs to be handled in ac_nir_lower_ngg.
|
||||
*/
|
||||
assert(nir->info.stage == MESA_SHADER_VERTEX ||
|
||||
nir->info.stage == MESA_SHADER_TESS_EVAL ||
|
||||
nir->info.stage == MESA_SHADER_GEOMETRY);
|
||||
|
||||
/* Iterate in reverse order since there should be only one deref store to POS after
|
||||
* lower_io_to_temporaries for vertex shaders and inject the layer there. For geometry shaders,
|
||||
* the layer is injected right before every emit_vertex_with_counter.
|
||||
*/
|
||||
nir_variable *layer = NULL;
|
||||
nir_foreach_block_reverse(block, impl) {
|
||||
nir_foreach_instr_reverse(instr, block) {
|
||||
if (instr->type != nir_instr_type_intrinsic)
|
||||
continue;
|
||||
|
||||
if (nir->info.stage == MESA_SHADER_GEOMETRY) {
|
||||
nir_intrinsic_instr *intr = nir_instr_as_intrinsic(instr);
|
||||
if (intr->intrinsic != nir_intrinsic_emit_vertex_with_counter)
|
||||
continue;
|
||||
|
||||
b.cursor = nir_before_instr(instr);
|
||||
} else {
|
||||
nir_intrinsic_instr *intr = nir_instr_as_intrinsic(instr);
|
||||
if (intr->intrinsic != nir_intrinsic_store_deref)
|
||||
continue;
|
||||
|
||||
nir_variable *var = nir_intrinsic_get_var(intr, 0);
|
||||
if (var->data.mode != nir_var_shader_out || var->data.location != VARYING_SLOT_POS)
|
||||
continue;
|
||||
|
||||
b.cursor = nir_after_instr(instr);
|
||||
}
|
||||
|
||||
if (!layer)
|
||||
layer = find_layer_out_var(nir);
|
||||
|
||||
nir_store_var(&b, layer, nir_load_view_index(&b), 1);
|
||||
|
||||
/* Update outputs_written to reflect that the pass added a new output. */
|
||||
nir->info.outputs_written |= BITFIELD64_BIT(VARYING_SLOT_LAYER);
|
||||
|
||||
progress = true;
|
||||
if (nir->info.stage == MESA_SHADER_VERTEX)
|
||||
break;
|
||||
}
|
||||
if (nir->info.stage == MESA_SHADER_VERTEX && progress)
|
||||
break;
|
||||
}
|
||||
|
||||
if (progress)
|
||||
nir_metadata_preserve(impl, nir_metadata_block_index | nir_metadata_dominance);
|
||||
else
|
||||
nir_metadata_preserve(impl, nir_metadata_all);
|
||||
|
||||
return progress;
|
||||
}
|
||||
|
||||
static void
|
||||
radv_remove_point_size(const struct radv_pipeline_key *pipeline_key,
|
||||
nir_shader *producer, nir_shader *consumer)
|
||||
@@ -1836,7 +1754,7 @@ radv_pipeline_link_vs(const struct radv_device *device, struct radv_pipeline_sta
|
||||
assert(vs_stage->nir->info.stage == MESA_SHADER_VERTEX);
|
||||
|
||||
if (radv_should_export_multiview(vs_stage, next_stage, pipeline_key)) {
|
||||
NIR_PASS(_, vs_stage->nir, radv_export_multiview);
|
||||
NIR_PASS(_, vs_stage->nir, radv_nir_export_multiview);
|
||||
}
|
||||
|
||||
if (next_stage) {
|
||||
@@ -1902,7 +1820,7 @@ radv_pipeline_link_tes(const struct radv_device *device, struct radv_pipeline_st
|
||||
assert(tes_stage->nir->info.stage == MESA_SHADER_TESS_EVAL);
|
||||
|
||||
if (radv_should_export_multiview(tes_stage, next_stage, pipeline_key)) {
|
||||
NIR_PASS(_, tes_stage->nir, radv_export_multiview);
|
||||
NIR_PASS(_, tes_stage->nir, radv_nir_export_multiview);
|
||||
}
|
||||
|
||||
if (next_stage) {
|
||||
@@ -1933,7 +1851,7 @@ radv_pipeline_link_gs(const struct radv_device *device, struct radv_pipeline_sta
|
||||
assert(gs_stage->nir->info.stage == MESA_SHADER_GEOMETRY);
|
||||
|
||||
if (radv_should_export_multiview(gs_stage, fs_stage, pipeline_key)) {
|
||||
NIR_PASS(_, gs_stage->nir, radv_export_multiview);
|
||||
NIR_PASS(_, gs_stage->nir, radv_nir_export_multiview);
|
||||
}
|
||||
|
||||
if (fs_stage) {
|
||||
|
Reference in New Issue
Block a user