mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 16:50:10 +01:00
Revert "i965/fs: Don't emit SEL instructions for type-converting MOVs."
This reverts commit7dccd38b40. d2x pass fixes SEL instructions when there is a type conversion by doing a SEL without type conversion and then convert the result. This pass also takes into account the non-uniform control flow. Then,7dccd38b40is not needed anymore. Signed-off-by: Samuel Iglesias Gonsálvez <siglesias@igalia.com> Reviewed-by: Francisco Jerez <currojerez@riseup.net> Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
aeecc82d05
commit
dee31311eb
1 changed files with 0 additions and 2 deletions
|
|
@ -165,8 +165,6 @@ fs_visitor::opt_peephole_sel()
|
|||
then_mov[i]->exec_size != else_mov[i]->exec_size ||
|
||||
then_mov[i]->group != else_mov[i]->group ||
|
||||
then_mov[i]->force_writemask_all != else_mov[i]->force_writemask_all ||
|
||||
then_mov[i]->dst.type != then_mov[i]->src[0].type ||
|
||||
else_mov[i]->dst.type != else_mov[i]->src[0].type ||
|
||||
then_mov[i]->is_partial_write() ||
|
||||
else_mov[i]->is_partial_write() ||
|
||||
then_mov[i]->conditional_mod != BRW_CONDITIONAL_NONE ||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue