prog_optimize: Set unused regs to PROGRAM_UNDEFINED after CMP->MOV conversion
authorIan Romanick <ian.d.romanick@intel.com>
Thu, 21 Jul 2011 01:02:17 +0000 (18:02 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Sat, 23 Jul 2011 08:24:18 +0000 (01:24 -0700)
commitfbeb68e880318808f90c779cd3f8b8c4160eecf8
tree13527d3c4d85aeb1f8e77ccb3f47e6d0fe095225
parentf7cd9a858c043e609fcdbf9ac9dfc1ef7ad002bf
prog_optimize: Set unused regs to PROGRAM_UNDEFINED after CMP->MOV conversion

Leaving the unused registers with other values caused assertion
failures and other problems in places that blindly iterate over all
sources.

brw_vs_emit.c:1381: get_src_reg: Assertion `c->regs[file][index].nr !=
0' failed.

Fixes i965 piglit:

    vs-uniform-array-mat[234]-col-row-rd
    vs-uniform-array-mat[234]-index-col-row-rd
    vs-uniform-array-mat[234]-index-row-rd
    vs-uniform-mat[234]-col-row-rd

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Eric Anholt <eric@anholt.net>
src/mesa/program/prog_optimize.c