Home
last modified time | relevance | path

Searched refs:cin (Results 1 – 2 of 2) sorted by relevance

/qemu/target/i386/tcg/
H A Demit.c.inc2982 /* high = (T0 << 1) | cin */
2983 TCGv cin = have_1bit_cin ? decode->cc_dst : decode->cc_src;
2984 tcg_gen_deposit_tl(high, cin, s->T0, 1, TARGET_LONG_BITS - 1);
2986 /* Same as above but without deposit; cin in cc_dst. */
3034 TCGv cin = have_1bit_cin ? decode->cc_dst : decode->cc_src;
3035 tcg_gen_deposit_tl(high, cin, s->T0, 1, TARGET_LONG_BITS - 1);
3037 /* Same as above but without deposit; cin in cc_dst. */
/qemu/target/sparc/
H A Dtranslate.c396 static void gen_op_addcc_int(TCGv dst, TCGv src1, TCGv src2, TCGv cin) in gen_op_addcc_int() argument
400 if (cin) { in gen_op_addcc_int()
401 tcg_gen_add2_tl(cpu_cc_N, cpu_cc_C, src1, z, cin, z); in gen_op_addcc_int()
464 static void gen_op_subcc_int(TCGv dst, TCGv src1, TCGv src2, TCGv cin) in gen_op_subcc_int() argument
468 if (cin) { in gen_op_subcc_int()
469 tcg_gen_sub2_tl(cpu_cc_N, cpu_cc_C, src1, z, cin, z); in gen_op_subcc_int()