Searched refs:cpu_Nf (Results 1 – 1 of 1) sorted by relevance
/openbmc/qemu/target/avr/ |
H A D | translate.c | 50 static TCGv cpu_Nf; variable 132 cpu_Nf = tcg_global_mem_new_i32(tcg_env, AVR_REG_OFFS(sregN), "Nf"); in avr_cpu_tcg_init() 276 tcg_gen_shri_tl(cpu_Nf, R, 7); /* Nf = R(7) */ in gen_NSf() 277 tcg_gen_xor_tl(cpu_Sf, cpu_Nf, cpu_Vf); /* Sf = Nf ^ Vf */ in gen_NSf() 285 tcg_gen_shri_tl(cpu_Nf, R, 7); /* Nf = R(7) */ in gen_ZNSf() 286 tcg_gen_xor_tl(cpu_Sf, cpu_Nf, cpu_Vf); /* Sf = Nf ^ Vf */ in gen_ZNSf() 365 tcg_gen_shri_tl(cpu_Nf, R, 15); /* Nf = R(15) */ in trans_ADIW() 366 tcg_gen_xor_tl(cpu_Sf, cpu_Nf, cpu_Vf);/* Sf = Nf ^ Vf */ in trans_ADIW() 512 tcg_gen_shri_tl(cpu_Nf, R, 15); /* Nf = R(15) */ in trans_SBIW() 513 tcg_gen_xor_tl(cpu_Sf, cpu_Nf, cpu_Vf); /* Sf = Nf ^ Vf */ in trans_SBIW() [all …]
|