mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-01-28 13:05:02 -08:00
vkd3d-shader/ir: Run validation after materializing undominated SSAs to TEMPs.
This commit is contained in:
parent
08c1f4d45e
commit
7b9a1bf6df
Notes:
Henri Verbeet
2024-09-05 16:38:53 +02:00
Approved-by: Giovanni Mascellani (@giomasce) Approved-by: Henri Verbeet (@hverbeet) Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/1043
@ -5465,8 +5465,9 @@ static enum vkd3d_result vsir_program_materialize_undominated_ssas_to_temps_in_f
|
||||
}
|
||||
|
||||
static enum vkd3d_result vsir_program_materialize_undominated_ssas_to_temps(struct vsir_program *program,
|
||||
struct vkd3d_shader_message_context *message_context)
|
||||
struct vsir_normalisation_context *ctx)
|
||||
{
|
||||
struct vkd3d_shader_message_context *message_context = ctx->message_context;
|
||||
enum vkd3d_result ret;
|
||||
size_t i;
|
||||
|
||||
@ -6668,12 +6669,10 @@ enum vkd3d_result vsir_program_normalise(struct vsir_program *program, uint64_t
|
||||
vsir_transform(&ctx, vsir_program_lower_switch_to_selection_ladder);
|
||||
vsir_transform(&ctx, vsir_program_structurize);
|
||||
vsir_transform(&ctx, vsir_program_flatten_control_flow_constructs);
|
||||
vsir_transform(&ctx, vsir_program_materialize_undominated_ssas_to_temps);
|
||||
|
||||
if (ctx.result < 0)
|
||||
return ctx.result;
|
||||
|
||||
if ((result = vsir_program_materialize_undominated_ssas_to_temps(program, message_context)) < 0)
|
||||
return result;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user