Re: [PATCH 4/7] target/nios2: Add DisasContextBase to DisasContext

2021-06-28 Thread Peter Maydell
On Sun, 20 Jun 2021 at 06:31, Richard Henderson wrote: > > Migrate the is_jmp, tb and singlestep_enabled fields > from DisasContext into the base. The commit message says we're only moving is_jmp, tb and singlestep_enabled, but... > static bool use_goto_tb(DisasContext *dc, uint32_t dest) > {

[PATCH 4/7] target/nios2: Add DisasContextBase to DisasContext

2021-06-19 Thread Richard Henderson
Migrate the is_jmp, tb and singlestep_enabled fields from DisasContext into the base. Signed-off-by: Richard Henderson --- target/nios2/translate.c | 51 +--- 1 file changed, 27 insertions(+), 24 deletions(-) diff --git a/target/nios2/translate.c b/target/nio