Lines Matching refs:Dst
238 inst.Dst[0].Register.File = TGSI_FILE_TEMPORARY,
239 inst.Dst[0].Register.Index = vtctx->input_temp[INPUT_TEMP_BLOCK_ID].temp;
240 inst.Dst[0].Register.WriteMask = TGSI_WRITEMASK_XYZ;
286 if (inst->Dst[i].Register.File == TGSI_FILE_TEMPORARY) {
287 uint32_t index = inst->Dst[i].Register.Index / 8;
288 uint32_t bits = inst->Dst[i].Register.WriteMask << (inst->Dst[i].Register.Index % 8);
308 uint32_t bits = read_mask << (inst->Dst[i].Register.Index % 8);
342 if (inst->Dst[i].Register.File == TGSI_FILE_OUTPUT) {
344 if (inst->Dst[i].Register.Index == vtctx->writemask_fixup_outs[j]) {
345 inst->Dst[i].Register.File = TGSI_FILE_TEMPORARY;
346 inst->Dst[i].Register.Index = vtctx->writemask_fixup_temps + j;
369 temp_inst.Dst[0].Register.File = TGSI_FILE_TEMPORARY,
370 temp_inst.Dst[0].Register.Index = vtctx->src_temp + i;
371 temp_inst.Dst[0].Register.WriteMask = TGSI_WRITEMASK_XYZ;
394 inst->Dst[0].Register.File == TGSI_FILE_OUTPUT &&
397 op_to_temp.Dst[0].Register.File = TGSI_FILE_TEMPORARY;
398 op_to_temp.Dst[0].Register.Index = vtctx->src_temp;
399 op_to_temp.Dst[0].Dimension.Indirect = 0;
400 op_to_temp.Dst[0].Register.Indirect = 0;
418 inst->Dst[i].Register.File == TGSI_FILE_TEMPORARY &&
419 inst->Dst[i].Register.Index >= vtctx->writemask_fixup_temps &&
420 inst->Dst[i].Register.Index < vtctx->writemask_fixup_temps + vtctx->num_writemask_fixups) {
422 unsigned real_out = vtctx->writemask_fixup_outs[inst->Dst[i].Register.Index - vtctx->writemask_fixup_temps];
425 inst->Dst[i].Register.File, inst->Dst[i].Register.Index);