qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

target/ppc: set is_jmp on ppc_tr_breakpoint_check

The use of GDB breakpoints was broken by b0c2d52 ("target/ppc: convert
to TranslatorOps", 2018-02-16).

Fix it by setting is_jmp, so that we break from the translation loop
as originally intended.

Tested-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Reported-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Signed-off-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
(cherry picked from commit 2a8ceefca23bc2aaafe711f8afd7585be3c27064)
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>

authored by

Emilio G. Cota and committed by
Michael Roth
0935356e d109f8eb

+1
+1
target/ppc/translate.c
··· 7296 7296 DisasContext *ctx = container_of(dcbase, DisasContext, base); 7297 7297 7298 7298 gen_debug_exception(ctx); 7299 + dcbase->is_jmp = DISAS_NORETURN; 7299 7300 /* The address covered by the breakpoint must be included in 7300 7301 [tb->pc, tb->pc + tb->size) in order to for it to be 7301 7302 properly cleared -- thus we increment the PC here so that