intel/compiler: fix cmod propagation for non 32-bit types
authorIago Toral Quiroga <itoral@igalia.com>
Mon, 19 Nov 2018 12:08:07 +0000 (13:08 +0100)
committerJuan A. Suarez Romero <jasuarez@igalia.com>
Thu, 18 Apr 2019 09:05:18 +0000 (11:05 +0200)
v2:
 - Do not propagate if the bit-size changes

Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
src/intel/compiler/brw_fs_cmod_propagation.cpp

index a821d4e54814dabf52836e801c1df58d19b23625..a2c11e0959ccc83f3968614236f7024fdfc32046 100644 (file)
@@ -244,8 +244,7 @@ opt_cmod_propagation_local(const gen_device_info *devinfo,
             /* CMP's result is the same regardless of dest type. */
             if (inst->conditional_mod == BRW_CONDITIONAL_NZ &&
                 scan_inst->opcode == BRW_OPCODE_CMP &&
-                (inst->dst.type == BRW_REGISTER_TYPE_D ||
-                 inst->dst.type == BRW_REGISTER_TYPE_UD)) {
+                brw_reg_type_is_integer(inst->dst.type)) {
                inst->remove(block);
                progress = true;
                break;
@@ -266,6 +265,12 @@ opt_cmod_propagation_local(const gen_device_info *devinfo,
 
             /* Comparisons operate differently for ints and floats */
             if (scan_inst->dst.type != inst->dst.type) {
+               /* Comparison result may be altered if the bit-size changes
+                * since that affects range, denorms, etc
+                */
+               if (type_sz(scan_inst->dst.type) != type_sz(inst->dst.type))
+                  break;
+
                /* We should propagate from a MOV to another instruction in a
                 * sequence like:
                 *
@@ -279,8 +284,8 @@ opt_cmod_propagation_local(const gen_device_info *devinfo,
                        scan_inst->dst.type != BRW_REGISTER_TYPE_UD)) {
                      break;
                   }
-               } else if (scan_inst->dst.type == BRW_REGISTER_TYPE_F ||
-                          inst->dst.type == BRW_REGISTER_TYPE_F) {
+               } else if (brw_reg_type_is_floating_point(scan_inst->dst.type) !=
+                          brw_reg_type_is_floating_point(inst->dst.type)) {
                   break;
                }
             }