From: Andrew Bennett Date: Mon, 29 Jun 2015 10:20:07 +0000 (+0000) Subject: linux-user: Fix MIPS N64 trap and break instruction bug X-Git-Tag: qemu-xen-4.7.0-rc1~164^2~1 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=f01a361bfcce4bd0c439b0e051ef2a1e56727a44;p=qemu-xen.git linux-user: Fix MIPS N64 trap and break instruction bug For the MIPS N64 ABI when QEMU reads the break/trap instruction so that it can inspect the break/trap code it reads 8 rather than 4 bytes which means it finds the code field from the instruction after the break/trap instruction. This then causes the break/trap handling code to fail because it does not understand the code number. The fix forces QEMU to always read 4 bytes of instruction data rather than deciding how much to read based on the ABI. Signed-off-by: Andrew Bennett Reviewed-by: Leon Alrae Signed-off-by: Leon Alrae --- diff --git a/linux-user/main.c b/linux-user/main.c index 05914b11e4..fdee981351 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -2577,7 +2577,7 @@ done_syscall: code = (trap_instr >> 6) & 0x3f; } } else { - ret = get_user_ual(trap_instr, env->active_tc.PC); + ret = get_user_u32(trap_instr, env->active_tc.PC); if (ret != 0) { goto error; } @@ -2611,7 +2611,7 @@ done_syscall: trap_instr = (instr[0] << 16) | instr[1]; } else { - ret = get_user_ual(trap_instr, env->active_tc.PC); + ret = get_user_u32(trap_instr, env->active_tc.PC); } if (ret != 0) {