target-mips: Use the new extract op

Use extract for EXT and DEXT.

Backports commit 6eebb7a438236fcf3fdadb013921ac597aaea911 fromq qemu
This commit is contained in:
Richard Henderson 2018-03-01 14:39:16 -05:00 committed by Lioncash
parent e5acbeb86e
commit b62743947f
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7

View file

@ -4550,11 +4550,12 @@ static void gen_bitops (DisasContext *ctx, uint32_t opc, int rt,
if (lsb + msb > 31) { if (lsb + msb > 31) {
goto fail; goto fail;
} }
tcg_gen_shri_tl(tcg_ctx, t0, t1, lsb);
if (msb != 31) { if (msb != 31) {
tcg_gen_andi_tl(tcg_ctx, t0, t0, (1U << (msb + 1)) - 1); tcg_gen_extract_tl(tcg_ctx, t0, t1, lsb, msb + 1);
} else { } else {
tcg_gen_ext32s_tl(tcg_ctx, t0, t0); /* The two checks together imply that lsb == 0,
so this is a simple sign-extension. */
tcg_gen_ext32s_tl(tcg_ctx, t0, t1);
} }
break; break;
#if defined(TARGET_MIPS64) #if defined(TARGET_MIPS64)
@ -4569,10 +4570,7 @@ static void gen_bitops (DisasContext *ctx, uint32_t opc, int rt,
if (lsb + msb > 63) { if (lsb + msb > 63) {
goto fail; goto fail;
} }
tcg_gen_shri_tl(tcg_ctx, t0, t1, lsb); tcg_gen_extract_tl(tcg_ctx, t0, t1, lsb, msb + 1);
if (msb != 63) {
tcg_gen_andi_tl(tcg_ctx, t0, t0, (1ULL << (msb + 1)) - 1);
}
break; break;
#endif #endif
case OPC_INS: case OPC_INS: