i965/fs: Only consider real sources when comparing instructions.
authorMatt Turner <mattst88@gmail.com>
Tue, 25 Mar 2014 22:28:17 +0000 (15:28 -0700)
committerMatt Turner <mattst88@gmail.com>
Tue, 17 Jun 2014 16:38:06 +0000 (09:38 -0700)
src/mesa/drivers/dri/i965/brw_fs_cse.cpp

index 3414d50d1f5e8000149ccc70006b30acafd008f0..920bfeed2214aae9caf3c06a76b25981c7e66a16 100644 (file)
@@ -105,10 +105,20 @@ is_expression_commutative(enum opcode op)
 }
 
 static bool
-operands_match(enum opcode op, fs_reg *xs, fs_reg *ys)
+operands_match(fs_inst *a, fs_inst *b)
 {
-   if (!is_expression_commutative(op)) {
-      return xs[0].equals(ys[0]) && xs[1].equals(ys[1]) && xs[2].equals(ys[2]);
+   fs_reg *xs = a->src;
+   fs_reg *ys = b->src;
+
+   if (!is_expression_commutative(a->opcode)) {
+      bool match = true;
+      for (int i = 0; i < a->sources; i++) {
+         if (!xs[i].equals(ys[i])) {
+            match = false;
+            break;
+         }
+      }
+      return match;
    } else {
       return (xs[0].equals(ys[0]) && xs[1].equals(ys[1])) ||
              (xs[1].equals(ys[0]) && xs[0].equals(ys[1]));
@@ -124,7 +134,8 @@ instructions_match(fs_inst *a, fs_inst *b)
           a->predicate_inverse == b->predicate_inverse &&
           a->conditional_mod == b->conditional_mod &&
           a->dst.type == b->dst.type &&
-          operands_match(a->opcode, a->src, b->src);
+          a->sources == b->sources &&
+          operands_match(a, b);
 }
 
 bool