Lines Matching refs:DstReg
90 newInst[i].DstReg.File = PROGRAM_OUTPUT;
91 newInst[i].DstReg.Index = VARYING_SLOT_POS;
92 newInst[i].DstReg.WriteMask = (WRITEMASK_X << i);
161 newInst[0].DstReg.File = PROGRAM_TEMPORARY;
162 newInst[0].DstReg.Index = hposTemp;
163 newInst[0].DstReg.WriteMask = WRITEMASK_XYZW;
173 newInst[i].DstReg.File = PROGRAM_TEMPORARY;
174 newInst[i].DstReg.Index = hposTemp;
175 newInst[i].DstReg.WriteMask = WRITEMASK_XYZW;
188 newInst[3].DstReg.File = PROGRAM_OUTPUT;
189 newInst[3].DstReg.Index = VARYING_SLOT_POS;
190 newInst[3].DstReg.WriteMask = WRITEMASK_XYZW;
300 if (inst->DstReg.File == PROGRAM_OUTPUT &&
301 inst->DstReg.Index == FRAG_RESULT_COLOR) {
303 inst->DstReg.File = PROGRAM_TEMPORARY;
304 inst->DstReg.Index = colorTemp;
319 inst->DstReg.File = PROGRAM_TEMPORARY;
320 inst->DstReg.Index = fogFactorTemp;
321 inst->DstReg.WriteMask = WRITEMASK_X;
340 inst->DstReg.File = PROGRAM_TEMPORARY;
341 inst->DstReg.Index = fogFactorTemp;
342 inst->DstReg.WriteMask = WRITEMASK_X;
354 inst->DstReg.File = PROGRAM_TEMPORARY;
355 inst->DstReg.Index = fogFactorTemp;
356 inst->DstReg.WriteMask = WRITEMASK_X;
367 inst->DstReg.File = PROGRAM_TEMPORARY;
368 inst->DstReg.Index = fogFactorTemp;
369 inst->DstReg.WriteMask = WRITEMASK_X;
379 inst->DstReg.File = PROGRAM_OUTPUT;
380 inst->DstReg.Index = FRAG_RESULT_COLOR;
381 inst->DstReg.WriteMask = WRITEMASK_XYZ;
394 inst->DstReg.File = PROGRAM_OUTPUT;
395 inst->DstReg.Index = FRAG_RESULT_COLOR;
396 inst->DstReg.WriteMask = WRITEMASK_W;
455 (inst->DstReg.File == PROGRAM_TEMPORARY) &&
456 (aluTemps & (1 << inst->DstReg.Index))))
469 if (inst->DstReg.File == PROGRAM_TEMPORARY)
470 aluTemps |= (1 << inst->DstReg.Index);
473 if ((inst->Opcode != OPCODE_KIL) && (inst->DstReg.File == PROGRAM_TEMPORARY))
474 tempsOutput |= (1 << inst->DstReg.Index);
548 if (inst->DstReg.File == type &&
549 outputMap[inst->DstReg.Index] >= 0) {
551 inst->DstReg.File = PROGRAM_TEMPORARY;
552 inst->DstReg.Index = outputMap[inst->DstReg.Index];
580 inst->DstReg.File = type;
581 inst->DstReg.Index = var;