r600: fix dst reg indexing

This fixes segfaults in apps like teapot and tunnel
This commit is contained in:
Kevin DeKorte
2009-07-20 18:56:47 -04:00
committed by Alex Deucher
parent 265d5eba65
commit cc893d9a98
+9 -2
View File
@@ -2193,6 +2193,7 @@ GLboolean assemble_alu_instruction(r700_AssemblerBase *pAsm)
GLboolean next_ins(r700_AssemblerBase *pAsm)
{
struct prog_instruction *pILInst = &(pAsm->pILInst[pAsm->uiCurInst]);
uint index;
if( GL_TRUE == IsTex(pILInst->Opcode) )
{
@@ -2213,14 +2214,20 @@ GLboolean next_ins(r700_AssemblerBase *pAsm)
if(pAsm->D.dst.rtype == DST_REG_OUT)
{
if (pAsm->starting_export_register_number >= pAsm->D.dst.reg) {
index = 0;
} else {
index = pAsm->D.dst.reg - pAsm->starting_export_register_number;
}
if(pAsm->D.dst.op3)
{
// There is no mask for OP3 instructions, so all channels are written
pAsm->pucOutMask[pAsm->D.dst.reg - pAsm->starting_export_register_number] = 0xF;
pAsm->pucOutMask[index] = 0xF;
}
else
{
pAsm->pucOutMask[pAsm->D.dst.reg - pAsm->starting_export_register_number]
pAsm->pucOutMask[index]
|= (unsigned char)pAsm->pILInst[pAsm->uiCurInst].DstReg.WriteMask;
}
}