On 10/12/18 10:30 AM, Bastian Koppelmann wrote: > +static bool trans_jal(DisasContext *ctx, arg_jal *a, uint32_t insn) > +{ > + CPURISCVState *env = current_cpu->env_ptr; > + gen_jal(env, ctx, a->rd, a->imm);
I think you should go ahead and put env into ctx, which is probably where it should have been in the first place for gen_jal et al to examine features. Reading from current_cpu is definitely suspect. r~