Home
last modified time | relevance | path

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

/qemu/target/sparc/
H A Dtranslate.c393 static void gen_op_addcc_int(TCGv dst, TCGv src1, TCGv src2, TCGv cin) in gen_op_addcc_int() argument
397 if (cin) { in gen_op_addcc_int()
398 tcg_gen_addcio_tl(cpu_cc_N, cpu_cc_C, src1, src2, cin); in gen_op_addcc_int()
460 static void gen_op_subcc_int(TCGv dst, TCGv src1, TCGv src2, TCGv cin) in gen_op_subcc_int() argument
464 if (cin) { in gen_op_subcc_int()
465 tcg_gen_sub2_tl(cpu_cc_N, cpu_cc_C, src1, z, cin, z); in gen_op_subcc_int()
/qemu/target/i386/tcg/
H A Demit.c.inc3471 /* high = (T0 << 1) | cin */
3472 TCGv cin = have_1bit_cin ? decode->cc_dst : decode->cc_src;
3473 tcg_gen_deposit_tl(high, cin, s->T0, 1, TARGET_LONG_BITS - 1);
3475 /* Same as above but without deposit; cin in cc_dst. */
3523 TCGv cin = have_1bit_cin ? decode->cc_dst : decode->cc_src;
3524 tcg_gen_deposit_tl(high, cin, s->T0, 1, TARGET_LONG_BITS - 1);
3526 /* Same as above but without deposit; cin in cc_dst. */