ra: Add q_values parameter to ra_set_finalize()
authorTom Stellard <thomas.stellard@amd.com>
Mon, 3 Sep 2012 14:43:45 +0000 (10:43 -0400)
committerTom Stellard <thomas.stellard@amd.com>
Wed, 19 Sep 2012 23:25:53 +0000 (19:25 -0400)
This allows the user to pass precomputed q values to the allocator.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/gallium/drivers/r300/compiler/radeon_pair_regalloc.c
src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp
src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp
src/mesa/program/register_allocate.c
src/mesa/program/register_allocate.h

index bb5b43f2f9523c90640437765c2b82b134a54ff1..85bb248b1275e90d483f260cda29ced723d4a631 100644 (file)
@@ -629,7 +629,7 @@ static void do_advanced_regalloc(struct regalloc_state * s)
                                get_reg_id(s->Input[i].Index, writemask));
        }
 
-       ra_set_finalize(regs);
+       ra_set_finalize(regs, NULL);
 
        graph = ra_alloc_interference_graph(regs, node_count + s->NumInputs);
 
index e7f11aee0df5f594d985868403510567889fe34d..b0d412439d2927e0c0276848a62860e2817fee4e 100644 (file)
@@ -142,7 +142,7 @@ brw_alloc_reg_set_for_classes(struct brw_context *brw,
       class_count++;
    }
 
-   ra_set_finalize(brw->wm.regs);
+   ra_set_finalize(brw->wm.regs, NULL);
 }
 
 bool
index 2d9d0c82e980a9cc154521dbaeeba35f9c61f2ac..2cda6784d0ea6005f48299b6ba9275056920e60e 100644 (file)
@@ -136,7 +136,7 @@ brw_alloc_reg_set_for_classes(struct brw_context *brw,
    }
    assert(reg == ra_reg_count);
 
-   ra_set_finalize(brw->vs.regs);
+   ra_set_finalize(brw->vs.regs, NULL);
 }
 
 void
index 07eb154954d14574463382622808a61d8287e232..97d4e331c910c3eefb0b12e06e6825ea0cdd5a7a 100644 (file)
@@ -255,9 +255,11 @@ ra_class_add_reg(struct ra_regs *regs, unsigned int c, unsigned int r)
 /**
  * Must be called after all conflicts and register classes have been
  * set up and before the register set is used for allocation.
+ * To avoid costly q value computation, use the q_values paramater
+ * to pass precomputed q values to this function.
  */
 void
-ra_set_finalize(struct ra_regs *regs)
+ra_set_finalize(struct ra_regs *regs, unsigned int **q_values)
 {
    unsigned int b, c;
 
@@ -265,6 +267,15 @@ ra_set_finalize(struct ra_regs *regs)
       regs->classes[b]->q = ralloc_array(regs, unsigned int, regs->class_count);
    }
 
+   if (q_values) {
+      for (b = 0; b < regs->class_count; b++) {
+         for (c = 0; c < regs->class_count; c++) {
+            regs->classes[b]->q[c] = q_values[b][c];
+        }
+      }
+      return;
+   }
+
    /* Compute, for each class B and C, how many regs of B an
     * allocation to C could conflict with.
     */
index 00b851ec21b97d103d24d61d8bc2b92bbac8fb1c..2a9d61191039125629d3c1608e0e876c352a29c8 100644 (file)
@@ -43,7 +43,9 @@ void ra_add_reg_conflict(struct ra_regs *regs,
 void ra_add_transitive_reg_conflict(struct ra_regs *regs,
                                    unsigned int base_reg, unsigned int reg);
 void ra_class_add_reg(struct ra_regs *regs, unsigned int c, unsigned int reg);
-void ra_set_finalize(struct ra_regs *regs);
+void ra_set_num_conflicts(struct ra_regs *regs, unsigned int class_a,
+                          unsigned int class_b, unsigned int num_conflicts);
+void ra_set_finalize(struct ra_regs *regs, unsigned int **conflicts);
 /** @} */
 
 /** @{ Interference graph setup.