mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-07 00:00:12 +01:00
nir/copy_propagate: Copy-prop into jump conditions
Reviewed-by: Eric Anholt <eric@anholt.net> Reviewed-by: Matt Turner <mattst88@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6866>
This commit is contained in:
parent
7f0cd6f153
commit
9a48ed84ec
1 changed files with 10 additions and 0 deletions
|
|
@ -230,6 +230,16 @@ copy_prop_instr(nir_instr *instr)
|
|||
return progress;
|
||||
}
|
||||
|
||||
case nir_instr_type_jump: {
|
||||
nir_jump_instr *jump = nir_instr_as_jump(instr);
|
||||
if (jump->type == nir_jump_goto_if) {
|
||||
while (copy_prop_src(&jump->condition, instr, NULL, 1))
|
||||
progress = true;
|
||||
}
|
||||
|
||||
return progress;
|
||||
}
|
||||
|
||||
case nir_instr_type_phi: {
|
||||
nir_phi_instr *phi = nir_instr_as_phi(instr);
|
||||
assert(phi->dest.is_ssa);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue