Mesa (master): i965: Set class_sizes[] for the aligned reg pair class.

Eric Anholt anholt at kemper.freedesktop.org
Thu Oct 14 18:04:19 UTC 2010


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

Author: Eric Anholt <eric at anholt.net>
Date:   Wed Oct 13 19:21:32 2010 -0700

i965: Set class_sizes[] for the aligned reg pair class.

So far, I've only seen this be a valgrind warning and not a real failure.

---

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

diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp
index 7119f97..c0fee11 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs.cpp
@@ -2237,6 +2237,7 @@ fs_visitor::assign_regs()
 
       aligned_pair_class = class_count;
       classes[aligned_pair_class] = ra_alloc_reg_class(regs);
+      class_sizes[aligned_pair_class] = 2;
       class_base_reg[aligned_pair_class] = 0;
       class_reg_count[aligned_pair_class] = 0;
       int start = (this->first_non_payload_grf & 1) ? 1 : 0;




More information about the mesa-commit mailing list