target/m68k: Fix address argument for EXCP_CHK
commitad5a5cf97d80501be95f5d255d2ce133e0623b50
authorRichard Henderson <richard.henderson@linaro.org>
Thu, 2 Jun 2022 01:33:50 +0000 (1 18:33 -0700)
committerLaurent Vivier <laurent@vivier.eu>
Thu, 2 Jun 2022 07:35:02 +0000 (2 09:35 +0200)
tree0d5596667ca6c1df4bfb6467cdce6e2f7688c7d8
parent035c6e7b5d86edee9e96423a590ee3ee0546c921
target/m68k: Fix address argument for EXCP_CHK

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

Create a raise_exception_format2 function to centralize recording
of the trapping pc in mmu.ar, plus advancing to the next insn.

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-7-richard.henderson@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
linux-user/m68k/cpu_loop.c
target/m68k/cpu.h
target/m68k/op_helper.c