HomeSort by relevance Sort by last modified time
    Searched refs:CC_DST (Results 1 - 3 of 3) sorted by null

  /external/qemu/target-i386/
cc_helper_template.h 60 src2 = CC_DST - CC_SRC;
61 cf = (DATA_TYPE)CC_DST < (DATA_TYPE)src1;
62 pf = parity_table[(uint8_t)CC_DST];
63 af = (CC_DST ^ src1 ^ src2) & 0x10;
64 zf = ((DATA_TYPE)CC_DST == 0) << 6;
65 sf = lshift(CC_DST, 8 - DATA_BITS) & 0x80;
66 of = lshift((src1 ^ src2 ^ -1) & (src1 ^ CC_DST), 12 - DATA_BITS) & CC_O;
75 cf = (DATA_TYPE)CC_DST < (DATA_TYPE)src1;
84 src2 = CC_DST - CC_SRC - 1;
85 cf = (DATA_TYPE)CC_DST <= (DATA_TYPE)src1
    [all...]
int_helper.c 160 CC_DST = al;
170 CC_DST = al;
366 CC_DST = r0;
377 CC_DST = r0;
386 CC_DST = r0;
cpu.h 616 CC_OP_ADDB, /* modify all flags, CC_DST = res, CC_SRC = src1 */
621 CC_OP_ADCB, /* modify all flags, CC_DST = res, CC_SRC = src1 */
626 CC_OP_SUBB, /* modify all flags, CC_DST = res, CC_SRC = src1 */
631 CC_OP_SBBB, /* modify all flags, CC_DST = res, CC_SRC = src1 */
636 CC_OP_LOGICB, /* modify all flags, CC_DST = res */
641 CC_OP_INCB, /* modify all flags except, CC_DST = res, CC_SRC = C */
646 CC_OP_DECB, /* modify all flags except, CC_DST = res, CC_SRC = C */
651 CC_OP_SHLB, /* modify all flags, CC_DST = res, CC_SRC.msb = C */
656 CC_OP_SARB, /* modify all flags, CC_DST = res, CC_SRC.lsb = C */
746 target_ulong cc_dst; member in struct:CPUX86State
    [all...]

Completed in 33 milliseconds