vc4: Fix the name of qpu_waddr_ignores_ws().
authorEric Anholt <eric@anholt.net>
Tue, 16 Dec 2014 19:29:15 +0000 (11:29 -0800)
committerEric Anholt <eric@anholt.net>
Tue, 16 Dec 2014 21:45:41 +0000 (13:45 -0800)
We're deciding about the WS bit, not PM.

src/gallium/drivers/vc4/vc4_qpu.c

index 83bf10556c41edbaaca1515b495f10bc5c35a6fe..0c3353c61e49875c44835e3da76fe5c8c9230374 100644 (file)
@@ -261,7 +261,7 @@ qpu_num_sf_accesses(uint64_t inst)
 }
 
 static bool
-qpu_waddr_ignores_pm(uint32_t waddr)
+qpu_waddr_ignores_ws(uint32_t waddr)
 {
         switch(waddr) {
         case QPU_W_ACC0:
@@ -394,11 +394,11 @@ qpu_merge_inst(uint64_t a, uint64_t b)
          * destination for ADD/MUL) if one of the original instructions
          * ignores it (probably because it's just writing to accumulators).
          */
-        if (qpu_waddr_ignores_pm(QPU_GET_FIELD(a, QPU_WADDR_ADD)) &&
-            qpu_waddr_ignores_pm(QPU_GET_FIELD(a, QPU_WADDR_MUL))) {
+        if (qpu_waddr_ignores_ws(QPU_GET_FIELD(a, QPU_WADDR_ADD)) &&
+            qpu_waddr_ignores_ws(QPU_GET_FIELD(a, QPU_WADDR_MUL))) {
                 merge = (merge & ~QPU_WS) | (b & QPU_WS);
-        } else if (qpu_waddr_ignores_pm(QPU_GET_FIELD(b, QPU_WADDR_ADD)) &&
-                   qpu_waddr_ignores_pm(QPU_GET_FIELD(b, QPU_WADDR_MUL))) {
+        } else if (qpu_waddr_ignores_ws(QPU_GET_FIELD(b, QPU_WADDR_ADD)) &&
+                   qpu_waddr_ignores_ws(QPU_GET_FIELD(b, QPU_WADDR_MUL))) {
                 merge = (merge & ~QPU_WS) | (a & QPU_WS);
         } else {
                 if ((a & QPU_WS) != (b & QPU_WS))