Use ILEN_UNWIND to signal that we have in fact that cpu_restore_state will have been called by the time we arrive in do_program_interrupt.
Signed-off-by: Richard Henderson <r...@twiddle.net> --- target/s390x/cpu.h | 9 ++++++--- target/s390x/helper.c | 7 +++++-- target/s390x/misc_helper.c | 5 ++++- target/s390x/translate.c | 9 ++++++++- 4 files changed, 23 insertions(+), 7 deletions(-) diff --git a/target/s390x/cpu.h b/target/s390x/cpu.h index 7732d01784..c294e6012d 100644 --- a/target/s390x/cpu.h +++ b/target/s390x/cpu.h @@ -43,7 +43,7 @@ #include "fpu/softfloat.h" #define NB_MMU_MODES 3 -#define TARGET_INSN_START_EXTRA_WORDS 1 +#define TARGET_INSN_START_EXTRA_WORDS 2 #define MMU_MODE0_SUFFIX _primary #define MMU_MODE1_SUFFIX _secondary @@ -475,7 +475,7 @@ static inline bool get_per_in_range(CPUS390XState *env, uint64_t addr) } #ifndef CONFIG_USER_ONLY -void trigger_pgm_exception(CPUS390XState *env, uint32_t code, uint32_t ilen); +void trigger_pgm_exception(CPUS390XState *env, uint32_t code, int ilen); #endif S390CPU *cpu_s390x_init(const char *cpu_model); @@ -1143,8 +1143,11 @@ uint32_t set_cc_nz_f128(float128 v); int handle_diag_288(CPUS390XState *env, uint64_t r1, uint64_t r3); void handle_diag_308(CPUS390XState *env, uint64_t r1, uint64_t r3); #endif -/* automatically detect the instruction length */ +/* Instruction length has been set by unwind info. */ +#define ILEN_UNWIND 0 +/* Automatically detect the instruction length */ #define ILEN_AUTO 0xff + void program_interrupt(CPUS390XState *env, uint32_t code, int ilen); void QEMU_NORETURN runtime_exception(CPUS390XState *env, int excp, uintptr_t retaddr); diff --git a/target/s390x/helper.c b/target/s390x/helper.c index aef09e1234..6d67d6b5a1 100644 --- a/target/s390x/helper.c +++ b/target/s390x/helper.c @@ -166,13 +166,16 @@ int s390_cpu_handle_mmu_fault(CPUState *cs, vaddr address, #else /* !CONFIG_USER_ONLY */ /* Ensure to exit the TB after this call! */ -void trigger_pgm_exception(CPUS390XState *env, uint32_t code, uint32_t ilen) +void trigger_pgm_exception(CPUS390XState *env, uint32_t code, int ilen) { CPUState *cs = CPU(s390_env_get_cpu(env)); cs->exception_index = EXCP_PGM; env->int_pgm_code = code; - env->int_pgm_ilen = ilen; + /* If ILEN_UNWIND, int_pgm_ilen already has the correct value. */ + if (ilen != ILEN_UNWIND) { + env->int_pgm_ilen = ilen; + } } int s390_cpu_handle_mmu_fault(CPUState *cs, vaddr orig_vaddr, diff --git a/target/s390x/misc_helper.c b/target/s390x/misc_helper.c index b5081019c5..452b2bd902 100644 --- a/target/s390x/misc_helper.c +++ b/target/s390x/misc_helper.c @@ -95,7 +95,10 @@ void program_interrupt(CPUS390XState *env, uint32_t code, int ilen) CPUState *cs = CPU(cpu); env->int_pgm_code = code; - env->int_pgm_ilen = ilen; + /* If ILEN_UNWIND, int_pgm_ilen already has the correct value. */ + if (ilen != ILEN_UNWIND) { + env->int_pgm_ilen = ilen; + } cs->exception_index = EXCP_PGM; cpu_loop_exit(cs); } diff --git a/target/s390x/translate.c b/target/s390x/translate.c index 48b71f9604..9b0c35efa2 100644 --- a/target/s390x/translate.c +++ b/target/s390x/translate.c @@ -61,6 +61,8 @@ struct DisasContext { uint64_t pc, next_pc; uint32_t ilen; enum cc_op cc_op; + /* TCG op index of the current insn_start. */ + int insn_start_idx; bool singlestep_enabled; }; @@ -5656,6 +5658,7 @@ static const DisasInsn *extract_insn(CPUS390XState *env, DisasContext *s, } s->next_pc = s->pc + ilen; s->ilen = ilen; + tcg_set_insn_param(s->insn_start_idx, 2, ilen); /* We can't actually determine the insn format until we've looked up the full insn opcode. Which we can't do without locating the @@ -5890,7 +5893,10 @@ void gen_intermediate_code(CPUState *cs, struct TranslationBlock *tb) gen_tb_start(tb); do { - tcg_gen_insn_start(dc.pc, dc.cc_op); + /* ??? Alternately, delay emitting insn_start until after we + have computed the insn length in extract_insn. */ + dc.insn_start_idx = tcg_op_buf_count(); + tcg_gen_insn_start(dc.pc, dc.cc_op, 0); num_insns++; if (unlikely(cpu_breakpoint_test(cs, dc.pc, BP_ANY))) { @@ -5984,4 +5990,5 @@ void restore_state_to_opc(CPUS390XState *env, TranslationBlock *tb, if ((cc_op != CC_OP_DYNAMIC) && (cc_op != CC_OP_STATIC)) { env->cc_op = cc_op; } + env->int_pgm_ilen = data[2]; } -- 2.13.3