OSDN Git Service

target/m68k: Fix pc, c flag, and address argument for EXCP_DIV0
authorRichard Henderson <richard.henderson@linaro.org>
Thu, 2 Jun 2022 01:33:51 +0000 (18:33 -0700)
committerLaurent Vivier <laurent@vivier.eu>
Thu, 2 Jun 2022 07:35:02 +0000 (09:35 +0200)
commit710d747b2deaf5f5678aebb1fabbe00224e5cdde
tree2b28cf307c1f545efb777dab8c7c1cfba12eab52
parentad5a5cf97d80501be95f5d255d2ce133e0623b50
target/m68k: Fix pc, c flag, and address argument for EXCP_DIV0

According to the M68040 Users Manual, section 8.4.3,
Six word stack frame (format 2), Zero Div (and others)
is supposed to record the next insn in PC and the
address of the trapping instruction in ADDRESS.

While the N, Z and V flags are documented to be undefine on DIV0,
the C flag is documented as always cleared.

Update helper_div* to take the instruction length as an argument
and use raise_exception_format2.  Hoist the reset of the C flag
above the division by zero check.

Update m68k_interrupt_all to pass mmu.ar to do_stack_frame.
Update cpu_loop to pass mmu.ar to siginfo.si_addr, as the
kernel does in trap_c().

Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20220602013401.303699-8-richard.henderson@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
linux-user/m68k/cpu_loop.c
target/m68k/helper.h
target/m68k/op_helper.c
target/m68k/translate.c