i965/fs: Don't do redundant RA setup on IVB+
authorJason Ekstrand <jason.ekstrand@intel.com>
Fri, 31 Jul 2015 15:36:35 +0000 (08:36 -0700)
committerJason Ekstrand <jason.ekstrand@intel.com>
Mon, 10 Aug 2015 19:04:04 +0000 (12:04 -0700)
Acked-by: Matt Turner <mattst88@gmail.com>
src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp

index 211f70ee942e80ab40a2050d0b86966c9c772244..b70895ec2ffdb85a35d949b4b54b5ef5818f03eb 100644 (file)
@@ -79,6 +79,15 @@ brw_alloc_reg_set(struct brw_compiler *compiler, int dispatch_width)
    int base_reg_count = BRW_MAX_GRF;
    int index = (dispatch_width / 8) - 1;
 
+   if (dispatch_width > 8 && devinfo->gen >= 7) {
+      /* For IVB+, we don't need the PLN hacks or the even-reg alignment in
+       * SIMD16.  Therefore, we can use the exact same register sets for
+       * SIMD16 as we do for SIMD8 and we don't need to recalculate them.
+       */
+      compiler->fs_reg_sets[index] = compiler->fs_reg_sets[0];
+      return;
+   }
+
    /* The registers used to make up almost all values handled in the compiler
     * are a scalar value occupying a single register (or 2 registers in the
     * case of SIMD16, which is handled by dividing base_reg_count by 2 and