i965: Move nir_lower_deref_instrs to right before locals_to_regs
Reviewed-by: Caio Marcelo de Oliveira Filho <caio.oliveira@intel.com> Acked-by: Rob Clark <robdclark@gmail.com> Acked-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Acked-by: Dave Airlie <airlied@redhat.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
@@ -204,7 +204,6 @@ blorp_compile_fs(struct blorp_context *blorp, void *mem_ctx,
|
||||
*/
|
||||
wm_prog_data->base.binding_table.texture_start = BLORP_TEXTURE_BT_INDEX;
|
||||
|
||||
nir_lower_deref_instrs(nir, ~0);
|
||||
nir = brw_preprocess_nir(compiler, nir);
|
||||
nir_remove_dead_variables(nir, nir_var_shader_in);
|
||||
nir_shader_gather_info(nir, nir_shader_get_entrypoint(nir));
|
||||
@@ -234,7 +233,6 @@ blorp_compile_vs(struct blorp_context *blorp, void *mem_ctx,
|
||||
nir->options =
|
||||
compiler->glsl_compiler_options[MESA_SHADER_VERTEX].NirOptions;
|
||||
|
||||
nir_lower_deref_instrs(nir, ~0);
|
||||
nir = brw_preprocess_nir(compiler, nir);
|
||||
nir_shader_gather_info(nir, nir_shader_get_entrypoint(nir));
|
||||
|
||||
|
@@ -766,6 +766,8 @@ brw_postprocess_nir(nir_shader *nir, const struct brw_compiler *compiler,
|
||||
OPT(nir_opt_dce);
|
||||
OPT(nir_opt_move_comparisons);
|
||||
|
||||
OPT(nir_lower_deref_instrs, ~0);
|
||||
|
||||
OPT(nir_lower_locals_to_regs);
|
||||
|
||||
if (unlikely(debug_enabled)) {
|
||||
|
@@ -79,10 +79,10 @@ brw_create_nir(struct brw_context *brw,
|
||||
if (shader_prog) {
|
||||
if (shader_prog->data->spirv) {
|
||||
nir = _mesa_spirv_to_nir(ctx, shader_prog, stage, options);
|
||||
nir_lower_deref_instrs(nir, ~0);
|
||||
nir_lower_deref_instrs(nir, nir_lower_texture_derefs);
|
||||
} else {
|
||||
nir = glsl_to_nir(shader_prog, stage, options);
|
||||
nir_lower_deref_instrs(nir, ~0);
|
||||
nir_lower_deref_instrs(nir, nir_lower_texture_derefs);
|
||||
}
|
||||
assert (nir);
|
||||
|
||||
@@ -93,7 +93,6 @@ brw_create_nir(struct brw_context *brw,
|
||||
nir_shader_get_entrypoint(nir), true, false);
|
||||
} else {
|
||||
nir = prog_to_nir(prog, options);
|
||||
nir_lower_deref_instrs(nir, ~0);
|
||||
NIR_PASS_V(nir, nir_lower_regs_to_ssa); /* turn registers into SSA */
|
||||
}
|
||||
nir_validate_shader(nir);
|
||||
|
Reference in New Issue
Block a user