Skip to content

Commit

Permalink
target-i386: Implement MULX
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Henderson <rth@twiddle.net>
  • Loading branch information
rth7680 committed Feb 18, 2013
1 parent 02ea1e6 commit 5f1f4b1
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 0 deletions.
1 change: 1 addition & 0 deletions target-i386/helper.h
Expand Up @@ -19,6 +19,7 @@ DEF_HELPER_2(imulq_EAX_T0, void, env, tl)
DEF_HELPER_3(imulq_T0_T1, tl, env, tl, tl)
DEF_HELPER_2(divq_EAX, void, env, tl)
DEF_HELPER_2(idivq_EAX, void, env, tl)
DEF_HELPER_FLAGS_2(umulh, TCG_CALL_NO_RWG_SE, tl, tl, tl)
#endif

DEF_HELPER_2(aam, void, env, int)
Expand Down
7 changes: 7 additions & 0 deletions target-i386/int_helper.c
Expand Up @@ -385,6 +385,13 @@ void helper_mulq_EAX_T0(CPUX86State *env, target_ulong t0)
CC_SRC = r1;
}

target_ulong helper_umulh(target_ulong t0, target_ulong t1)
{
uint64_t h, l;
mulu64(&l, &h, t0, t1);
return h;
}

void helper_imulq_EAX_T0(CPUX86State *env, target_ulong t0)
{
uint64_t r0, r1;
Expand Down
39 changes: 39 additions & 0 deletions target-i386/translate.c
Expand Up @@ -4099,6 +4099,45 @@ static void gen_sse(CPUX86State *env, DisasContext *s, int b,
set_cc_op(s, CC_OP_BMILGB + ot);
break;

case 0x3f6: /* mulx By, Gy, rdx, Ey */
if (!(s->cpuid_7_0_ebx_features & CPUID_7_0_EBX_BMI2)
|| !(s->prefix & PREFIX_VEX)
|| s->vex_l != 0) {
goto illegal_op;
}
ot = s->dflag == 2 ? OT_QUAD : OT_LONG;
gen_ldst_modrm(env, s, modrm, ot, OR_TMP0, 0);
switch (ot) {
TCGv_i64 t0, t1;
default:
t0 = tcg_temp_new_i64();
t1 = tcg_temp_new_i64();
#ifdef TARGET_X86_64
tcg_gen_ext32u_i64(t0, cpu_T[0]);
tcg_gen_ext32u_i64(t1, cpu_regs[R_EDX]);
#else
tcg_gen_extu_i32_i64(t0, cpu_T[0]);
tcg_gen_extu_i32_i64(t0, cpu_regs[R_EDX]);
#endif
tcg_gen_mul_i64(t0, t0, t1);
tcg_gen_trunc_i64_tl(cpu_T[0], t0);
tcg_gen_shri_i64(t0, t0, 32);
tcg_gen_trunc_i64_tl(cpu_T[1], t0);
tcg_temp_free_i64(t0);
tcg_temp_free_i64(t1);
gen_op_mov_reg_T0(OT_LONG, s->vex_v);
gen_op_mov_reg_T1(OT_LONG, reg);
break;
#ifdef TARGET_X86_64
case OT_QUAD:
tcg_gen_mov_tl(cpu_T[1], cpu_regs[R_EDX]);
tcg_gen_mul_tl(cpu_regs[s->vex_v], cpu_T[0], cpu_T[1]);
gen_helper_umulh(cpu_regs[reg], cpu_T[0], cpu_T[1]);
break;
#endif
}
break;

case 0x0f3:
case 0x1f3:
case 0x2f3:
Expand Down

0 comments on commit 5f1f4b1

Please sign in to comment.