Lines Matching refs:t
275 static inline void gen_load_spr(TCGv t, int reg) in gen_load_spr() argument
277 tcg_gen_ld_tl(t, tcg_env, offsetof(CPUPPCState, spr[reg])); in gen_load_spr()
280 static inline void gen_store_spr(int reg, TCGv t) in gen_store_spr() argument
282 tcg_gen_st_tl(t, tcg_env, offsetof(CPUPPCState, spr[reg])); in gen_store_spr()
1591 TCGv_i32 t = tcg_temp_new_i32(); in gen_op_cmp() local
1599 tcg_gen_trunc_tl_i32(t, t0); in gen_op_cmp()
1601 tcg_gen_or_i32(cpu_crf[crf], cpu_crf[crf], t); in gen_op_cmp()
2890 TCGv_i32 t; in gen_check_tlb_flush() local
2897 t = tcg_temp_new_i32(); in gen_check_tlb_flush()
2898 tcg_gen_ld_i32(t, tcg_env, offsetof(CPUPPCState, tlb_need_flush)); in gen_check_tlb_flush()
2899 tcg_gen_brcondi_i32(TCG_COND_EQ, t, 0, l); in gen_check_tlb_flush()
2959 TCGv t = tcg_temp_new(); in LARX() local
2963 tcg_gen_qemu_ld_tl(t, EA, ctx->mem_idx, memop); in LARX()
2966 tcg_gen_addi_tl(u, t, addend); in LARX()
2970 tcg_gen_movcond_tl(cond, u, t, t2, u, t); in LARX()
2974 tcg_gen_movcond_tl(cond, cpu_gpr[rD(ctx->opcode)], t, t2, t, in LARX()
3129 TCGv t = tcg_temp_new(); in gen_st_atomic() local
3135 tcg_gen_qemu_ld_tl(t, EA, ctx->mem_idx, memop); in gen_st_atomic()
3138 tcg_gen_movcond_tl(TCG_COND_EQ, s, t, t2, src, t); in gen_st_atomic()
3139 tcg_gen_movcond_tl(TCG_COND_EQ, s2, t, t2, src, t2); in gen_st_atomic()
3388 TCGv_i32 t; in gen_doze()
3392 t = tcg_constant_i32(PPC_PM_DOZE); in gen_doze()
3393 gen_helper_pminsn(tcg_env, t); in gen_doze()
3404 TCGv_i32 t; in gen_nap()
3408 t = tcg_constant_i32(PPC_PM_NAP); in gen_nap()
3409 gen_helper_pminsn(tcg_env, t); in gen_nap()
3420 TCGv_i32 t; in gen_stop()
3424 t = tcg_constant_i32(PPC_PM_STOP); in gen_stop()
3425 gen_helper_pminsn(tcg_env, t); in gen_stop()
3436 TCGv_i32 t; in gen_sleep()
3440 t = tcg_constant_i32(PPC_PM_SLEEP); in gen_sleep()
3441 gen_helper_pminsn(tcg_env, t); in gen_sleep()
3452 TCGv_i32 t; in gen_rvwinkle()
3456 t = tcg_constant_i32(PPC_PM_RVWINKLE); in gen_rvwinkle()
3457 gen_helper_pminsn(tcg_env, t); in gen_rvwinkle()