Searched refs:cpu_Cf (Results 1 – 1 of 1) sorted by relevance
/openbmc/qemu/target/avr/ |
H A D | translate.c | 48 static TCGv cpu_Cf; variable 130 cpu_Cf = tcg_global_mem_new_i32(tcg_env, AVR_REG_OFFS(sregC), "Cf"); in avr_cpu_tcg_init() 224 tcg_gen_shri_tl(cpu_Cf, t1, 7); /* Cf = t1(7) */ in gen_add_CHf() 255 tcg_gen_shri_tl(cpu_Cf, t2, 7); /* Cf = t2(7) */ in gen_sub_CHf() 323 tcg_gen_add_tl(R, R, cpu_Cf); in trans_ADC() 360 tcg_gen_andc_tl(cpu_Cf, Rd, R); /* Cf = Rd & ~R */ in trans_ADIW() 361 tcg_gen_shri_tl(cpu_Cf, cpu_Cf, 15); in trans_ADIW() 388 tcg_gen_andc_tl(cpu_Cf, Rd, R); /* Cf = Rd & ~R */ in trans_SUB() 434 tcg_gen_sub_tl(R, R, cpu_Cf); in trans_SBC() 464 tcg_gen_sub_tl(R, R, cpu_Cf); in trans_SBCI() [all …]
|