i965/vec4: Change types as needed to propagate source modifiers using current instruction
authorAlejandro Piñeiro <apinheiro@igalia.com>
Wed, 16 Sep 2015 08:26:55 +0000 (10:26 +0200)
committerAlejandro Piñeiro <apinheiro@igalia.com>
Fri, 18 Sep 2015 22:31:25 +0000 (00:31 +0200)
commit06d31dceae611b7d5c11442aa9bf8178067bcb62
treeb963874c398c38d39153dbb5bd30775ec3705005
parentf7ca52dd6d8b4b0fcdf01d8def5edf913ece6861
i965/vec4: Change types as needed to propagate source modifiers using current instruction

SEL and MOV instructions, as long as they don't have source modifiers, are
just copying bits around.  So those kind of instruction could be propagated
even if there are type mismatches. This is needed because NIR generates
integer SEL and MOV instructions whenever it doesn't know what else to
generate.

This commit adds support for copy propagation using current instruction
as reference.

Equivalent to commit 472ef9 but for vec4.

v2: include check for saturate, as Jason Ekstrand suggested
v3: check that the dst.type and the src type are the same, in order to
    solve (among others) the following deqp regression with v2:
    dEQP-GLES3.functional.shaders.operator.unary_operator.minus.lowp_uint_vertex

Reviewed-by: Jason Ekstrand <jason.ekstrand@intel.com>
src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp