Home | History | Annotate | Download | only in compiler

Lines Matching refs:DstReg

194 				     t_dst_index(vp, &vpi->DstReg),
195 t_dst_mask(vpi->DstReg.WriteMask),
196 t_dst_class(vpi->DstReg.File));
210 t_dst_index(vp, &vpi->DstReg),
211 t_dst_mask(vpi->DstReg.WriteMask),
212 t_dst_class(vpi->DstReg.File));
226 t_dst_index(vp, &vpi->DstReg),
227 t_dst_mask(vpi->DstReg.WriteMask),
228 t_dst_class(vpi->DstReg.File));
243 t_dst_index(vp, &vpi->DstReg),
244 t_dst_mask(vpi->DstReg.WriteMask),
245 t_dst_class(vpi->DstReg.File));
310 t_dst_index(vp, &vpi->DstReg),
311 t_dst_mask(vpi->DstReg.WriteMask),
312 t_dst_class(vpi->DstReg.File));
317 t_dst_index(vp, &vpi->DstReg),
318 t_dst_mask(vpi->DstReg.WriteMask),
319 t_dst_class(vpi->DstReg.File));
350 t_dst_index(vp, &vpi->DstReg),
351 t_dst_mask(vpi->DstReg.WriteMask),
352 t_dst_class(vpi->DstReg.File));
378 if (!valid_dst(compiler->code, &vpi->DstReg))
515 if (vpi->DstReg.Pred != RC_PRED_DISABLED) {
518 if (vpi->DstReg.Pred == RC_PRED_SET) {
525 if (info->HasDstReg && vpi->DstReg.File == RC_FILE_TEMPORARY &&
526 vpi->DstReg.Index >= compiler->code->num_temporaries)
527 compiler->code->num_temporaries = vpi->DstReg.Index + 1;
578 if (inst->U.I.DstReg.File == RC_FILE_TEMPORARY) {
579 if (inst->U.I.DstReg.Index >= num_orig_temps)
580 num_orig_temps = inst->U.I.DstReg.Index + 1;
639 if (inst->U.I.DstReg.File == RC_FILE_TEMPORARY) {
640 unsigned int orig = inst->U.I.DstReg.Index;
652 inst->U.I.DstReg.Index = ta[orig].HwTemp;
682 new_inst->U.I.DstReg.File = RC_FILE_TEMPORARY;
683 new_inst->U.I.DstReg.Index = temp;
714 inst_mov->U.I.DstReg.File = RC_FILE_TEMPORARY;
715 inst_mov->U.I.DstReg.Index = tmpreg;
729 inst_mov->U.I.DstReg.File = RC_FILE_TEMPORARY;
730 inst_mov->U.I.DstReg.Index = tmpreg;
753 inst->U.I.DstReg.File = RC_FILE_OUTPUT;
754 inst->U.I.DstReg.Index = i;
755 inst->U.I.DstReg.WriteMask = RC_MASK_XYZW;
797 add->U.I.DstReg.File = RC_FILE_TEMPORARY;
798 add->U.I.DstReg.Index = rc_find_free_temporary(&c->Base);
799 add->U.I.DstReg.WriteMask = RC_MASK_X;
807 arl->U.I.SrcReg[0].Index = add->U.I.DstReg.Index;