Mesa (master): i965/fs: Add missing register allocation for 3rd sources.

Eric Anholt anholt at kemper.freedesktop.org
Sat Feb 11 02:32:31 UTC 2012


Module: Mesa
Branch: master
Commit: a1bfafc5a96012c14db9b0d28223ab54feae131c
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=a1bfafc5a96012c14db9b0d28223ab54feae131c

Author: Eric Anholt <eric at anholt.net>
Date:   Tue Feb  7 01:09:59 2012 +0100

i965/fs: Add missing register allocation for 3rd sources.

Our only instruction with a 3rd source so far was linterp, and that
value was never register-allocated.

Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>

---

 src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp b/src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp
index 0d1712e..45f83f3 100644
--- a/src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp
@@ -61,6 +61,7 @@ fs_visitor::assign_regs_trivial()
       assign_reg(hw_reg_mapping, &inst->dst, reg_width);
       assign_reg(hw_reg_mapping, &inst->src[0], reg_width);
       assign_reg(hw_reg_mapping, &inst->src[1], reg_width);
+      assign_reg(hw_reg_mapping, &inst->src[2], reg_width);
    }
 
    if (this->grf_used >= max_grf) {
@@ -271,6 +272,7 @@ fs_visitor::assign_regs()
       assign_reg(hw_reg_mapping, &inst->dst, reg_width);
       assign_reg(hw_reg_mapping, &inst->src[0], reg_width);
       assign_reg(hw_reg_mapping, &inst->src[1], reg_width);
+      assign_reg(hw_reg_mapping, &inst->src[2], reg_width);
    }
 
    ralloc_free(g);




More information about the mesa-commit mailing list