Lines Matching refs:cpu_psw_c

67 static TCGv cpu_psw_o, cpu_psw_s, cpu_psw_z, cpu_psw_c;  variable
264 dc->value = cpu_psw_c; in psw_cond()
268 dc->value = cpu_psw_c; in psw_cond()
273 tcg_gen_and_i32(dc->temp, dc->temp, cpu_psw_c); in psw_cond()
952 tcg_gen_setcondi_i32(TCG_COND_EQ, cpu_psw_c, ret, 0); in rx_neg()
970 tcg_gen_add2_i32(cpu_psw_s, cpu_psw_c, arg1, z, cpu_psw_c, z); in rx_adc()
971 tcg_gen_add2_i32(cpu_psw_s, cpu_psw_c, cpu_psw_s, cpu_psw_c, arg2, z); in rx_adc()
1008 tcg_gen_add2_i32(cpu_psw_s, cpu_psw_c, arg1, z, arg2, z); in rx_add()
1043 tcg_gen_setcond_i32(TCG_COND_GEU, cpu_psw_c, arg1, arg2); in rx_sub()
1289 tcg_gen_sari_i32(cpu_psw_c, cpu_regs[a->rs2], 32 - a->imm); in trans_SHLL_irr()
1291 tcg_gen_setcondi_i32(TCG_COND_EQ, cpu_psw_o, cpu_psw_c, 0); in trans_SHLL_irr()
1292 tcg_gen_setcondi_i32(TCG_COND_EQ, tmp, cpu_psw_c, 0xffffffff); in trans_SHLL_irr()
1294 tcg_gen_setcondi_i32(TCG_COND_NE, cpu_psw_c, cpu_psw_c, 0); in trans_SHLL_irr()
1297 tcg_gen_movi_i32(cpu_psw_c, 0); in trans_SHLL_irr()
1319 tcg_gen_sar_i32(cpu_psw_c, cpu_regs[a->rd], count); in trans_SHLL_rr()
1321 tcg_gen_setcondi_i32(TCG_COND_EQ, cpu_psw_o, cpu_psw_c, 0); in trans_SHLL_rr()
1322 tcg_gen_setcondi_i32(TCG_COND_EQ, tmp, cpu_psw_c, 0xffffffff); in trans_SHLL_rr()
1324 tcg_gen_setcondi_i32(TCG_COND_NE, cpu_psw_c, cpu_psw_c, 0); in trans_SHLL_rr()
1328 tcg_gen_movi_i32(cpu_psw_c, 0); in trans_SHLL_rr()
1346 tcg_gen_andi_i32(cpu_psw_c, cpu_regs[rd], 0x00000001); in shiftr_imm()
1350 tcg_gen_movi_i32(cpu_psw_c, 0); in shiftr_imm()
1376 tcg_gen_andi_i32(cpu_psw_c, cpu_regs[rd], 0x00000001); in shiftr_reg()
1381 tcg_gen_movi_i32(cpu_psw_c, 0); in shiftr_reg()
1426 tcg_gen_or_i32(cpu_regs[a->rd], cpu_regs[a->rd], cpu_psw_c); in trans_ROLC()
1427 tcg_gen_mov_i32(cpu_psw_c, tmp); in trans_ROLC()
1440 tcg_gen_shli_i32(cpu_psw_c, cpu_psw_c, 31); in trans_RORC()
1441 tcg_gen_or_i32(cpu_regs[a->rd], cpu_regs[a->rd], cpu_psw_c); in trans_RORC()
1442 tcg_gen_mov_i32(cpu_psw_c, tmp); in trans_RORC()
1459 tcg_gen_andi_i32(cpu_psw_c, cpu_regs[rd], 0x00000001); in rx_rot()
1467 tcg_gen_shri_i32(cpu_psw_c, cpu_regs[rd], 31); in rx_rot()
1921 tcg_gen_setcondi_i32(TCG_COND_NE, cpu_psw_c, val, 0); in rx_btstm()
1922 tcg_gen_mov_i32(cpu_psw_z, cpu_psw_c); in rx_btstm()
1949 tcg_gen_setcondi_i32(TCG_COND_NE, cpu_psw_c, t0, 0); in rx_btstr()
1950 tcg_gen_mov_i32(cpu_psw_z, cpu_psw_c); in rx_btstr()
2053 tcg_gen_movi_i32(cpu_psw_c, val); in clrsetpsw()