mirror of
https://github.com/qemu/qemu.git
synced 2024-11-24 03:13:44 +08:00
Fix mtcrf/mfcr
Noticed by Alexander Graf git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6667 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
66c7c80657
commit
8dd640e49d
@ -3843,9 +3843,11 @@ GEN_HANDLER(mfcr, 0x1F, 0x13, 0x00, 0x00000801, PPC_MISC)
|
||||
|
||||
if (likely(ctx->opcode & 0x00100000)) {
|
||||
crm = CRM(ctx->opcode);
|
||||
if (likely((crm ^ (crm - 1)) == 0)) {
|
||||
crn = ffs(crm);
|
||||
if (likely(crm && ((crm & (crm - 1)) == 0))) {
|
||||
crn = ffs (crm) - 1;
|
||||
tcg_gen_extu_i32_tl(cpu_gpr[rD(ctx->opcode)], cpu_crf[7 - crn]);
|
||||
tcg_gen_shli_i32(cpu_gpr[rD(ctx->opcode)],
|
||||
cpu_gpr[rD(ctx->opcode)], crn * 4);
|
||||
}
|
||||
} else {
|
||||
gen_helper_load_cr(cpu_gpr[rD(ctx->opcode)]);
|
||||
@ -3935,13 +3937,15 @@ GEN_HANDLER(mtcrf, 0x1F, 0x10, 0x04, 0x00000801, PPC_MISC)
|
||||
uint32_t crm, crn;
|
||||
|
||||
crm = CRM(ctx->opcode);
|
||||
if (likely((ctx->opcode & 0x00100000) || (crm ^ (crm - 1)) == 0)) {
|
||||
TCGv_i32 temp = tcg_temp_new_i32();
|
||||
crn = ffs(crm);
|
||||
tcg_gen_trunc_tl_i32(temp, cpu_gpr[rS(ctx->opcode)]);
|
||||
tcg_gen_shri_i32(cpu_crf[7 - crn], temp, crn * 4);
|
||||
tcg_gen_andi_i32(cpu_crf[7 - crn], cpu_crf[7 - crn], 0xf);
|
||||
tcg_temp_free_i32(temp);
|
||||
if (likely((ctx->opcode & 0x00100000))) {
|
||||
if (crm && ((crm & (crm - 1)) == 0)) {
|
||||
TCGv_i32 temp = tcg_temp_new_i32();
|
||||
crn = ffs (crm) - 1;
|
||||
tcg_gen_trunc_tl_i32(temp, cpu_gpr[rS(ctx->opcode)]);
|
||||
tcg_gen_shri_i32(cpu_crf[7 - crn], temp, crn * 4);
|
||||
tcg_gen_andi_i32(cpu_crf[7 - crn], cpu_crf[7 - crn], 0xf);
|
||||
tcg_temp_free_i32(temp);
|
||||
}
|
||||
} else {
|
||||
TCGv_i32 temp = tcg_const_i32(crm);
|
||||
gen_helper_store_cr(cpu_gpr[rS(ctx->opcode)], temp);
|
||||
|
Loading…
Reference in New Issue
Block a user