Home | History | Annotate | Download | only in target-i386

Lines Matching refs:t0

44 void helper_divb_AL(CPUX86State *env, target_ulong t0)
49 den = (t0 & 0xff);
61 void helper_idivb_AL(CPUX86State *env, target_ulong t0)
66 den = (int8_t)t0;
78 void helper_divw_AX(CPUX86State *env, target_ulong t0)
83 den = (t0 & 0xffff);
96 void helper_idivw_AX(CPUX86State *env, target_ulong t0)
101 den = (int16_t)t0;
114 void helper_divl_EAX(CPUX86State *env, target_ulong t0)
120 den = t0;
132 void helper_idivl_EAX(CPUX86State *env, target_ulong t0)
138 den = t0;
359 void helper_mulq_EAX_T0(CPUX86State *env, target_ulong t0)
363 mulu64(&r0, &r1, EAX, t0);
370 void helper_imulq_EAX_T0(CPUX86State *env, target_ulong t0)
374 muls64(&r0, &r1, EAX, t0);
381 target_ulong helper_imulq_T0_T1(CPUX86State *env, target_ulong t0, target_ulong t1)
385 muls64(&r0, &r1, t0, t1);
391 void helper_divq_EAX(CPUX86State *env, target_ulong t0)
394 if (t0 == 0) {
399 if (div64(&r0, &r1, t0))
405 void helper_idivq_EAX(CPUX86State *env, target_ulong t0)
408 if (t0 == 0) {
413 if (idiv64(&r0, &r1, t0))
440 target_ulong helper_bsf(target_ulong t0)
445 res = t0;
454 target_ulong helper_bsr(target_ulong t0)
459 res = t0;