Lines Matching refs:ots
1444 TCGTemp *ots; in tcg_reg_alloc_movi() local
1447 ots = &s->temps[args[0]]; in tcg_reg_alloc_movi()
1450 if (ots->fixed_reg) { in tcg_reg_alloc_movi()
1453 tcg_out_movi(s, ots->type, ots->reg, val); in tcg_reg_alloc_movi()
1456 if (ots->val_type == TEMP_VAL_REG) in tcg_reg_alloc_movi()
1457 s->reg_to_temp[ots->reg] = -1; in tcg_reg_alloc_movi()
1458 ots->val_type = TEMP_VAL_CONST; in tcg_reg_alloc_movi()
1459 ots->val = val; in tcg_reg_alloc_movi()
1467 TCGTemp *ts, *ots; in tcg_reg_alloc_mov() local
1471 ots = &s->temps[args[0]]; in tcg_reg_alloc_mov()
1477 if (IS_DEAD_IARG(0) && !ts->fixed_reg && !ots->fixed_reg) { in tcg_reg_alloc_mov()
1479 if (ots->val_type == TEMP_VAL_REG) in tcg_reg_alloc_mov()
1480 s->reg_to_temp[ots->reg] = -1; in tcg_reg_alloc_mov()
1485 if (ots->val_type == TEMP_VAL_REG) { in tcg_reg_alloc_mov()
1486 reg = ots->reg; in tcg_reg_alloc_mov()
1495 if (ots->val_type == TEMP_VAL_REG) { in tcg_reg_alloc_mov()
1496 reg = ots->reg; in tcg_reg_alloc_mov()
1502 if (ots->fixed_reg) { in tcg_reg_alloc_mov()
1503 reg = ots->reg; in tcg_reg_alloc_mov()
1504 tcg_out_movi(s, ots->type, reg, ts->val); in tcg_reg_alloc_mov()
1507 if (ots->val_type == TEMP_VAL_REG) in tcg_reg_alloc_mov()
1508 s->reg_to_temp[ots->reg] = -1; in tcg_reg_alloc_mov()
1509 ots->val_type = TEMP_VAL_CONST; in tcg_reg_alloc_mov()
1510 ots->val = ts->val; in tcg_reg_alloc_mov()
1517 ots->reg = reg; in tcg_reg_alloc_mov()
1518 ots->val_type = TEMP_VAL_REG; in tcg_reg_alloc_mov()
1519 ots->mem_coherent = 0; in tcg_reg_alloc_mov()