register_allocate: don't consider trivially colorable registers for spilling.
authorPaul Berry <stereotype441@gmail.com>
Fri, 28 Sep 2012 21:21:38 +0000 (14:21 -0700)
committerPaul Berry <stereotype441@gmail.com>
Wed, 3 Oct 2012 19:54:42 +0000 (12:54 -0700)
Previously, we considered all registers as candidates for spilling.
This was counterproductive--for any registers that have already been
removed from the interference graph, there is no benefit to spilling
them, since they don't contribute to register pressure.

This patch ensures that we will only try to spill registers that are
still in the interference graph after register allocation has failed.

This is consistent with the recommendations of the paper "Retargetable
Graph-Coloring Register Allocation for Irregular Architectures", on
which our register allocator is based.

Reviewed-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
src/mesa/program/register_allocate.c

index 97d4e331c910c3eefb0b12e06e6825ea0cdd5a7a..88793dbdc1e2f7e7831f51d1566bd8f1613f8729 100644 (file)
@@ -555,6 +555,13 @@ ra_get_best_spill_node(struct ra_graph *g)
       if (cost <= 0.0)
         continue;
 
+      /* Only consider registers for spilling if they are still in the
+       * interference graph (those on the stack have already been proven to be
+       * allocatable without spilling).
+       */
+      if (g->nodes[n].in_stack)
+         continue;
+
       benefit = ra_get_spill_benefit(g, n);
 
       if (benefit / cost > best_benefit) {