Home | History | Annotate | Download | only in priv

Lines Matching refs:tc

3375 static void irExpr_to_TmpOrConst ( /*OUT*/TmpOrConst* tc, IRExpr* e )
3379 tc->tag = TCt;
3380 tc->u.tmp = e->Iex.RdTmp.tmp;
3383 tc->tag = TCc;
3384 tc->u.con = e->Iex.Const.con;
3394 static IRExpr* tmpOrConst_to_IRExpr ( TmpOrConst* tc )
3396 switch (tc->tag) {
3397 case TCc: return IRExpr_Const(tc->u.con);
3398 case TCt: return IRExpr_RdTmp(tc->u.tmp);
3662 static void subst_AvailExpr_TmpOrConst ( /*MB_MOD*/TmpOrConst* tc,
3666 if (tc->tag == TCt) {
3667 tc->u.tmp = subst_AvailExpr_Temp( env, tc->u.tmp );