Re: [PATCH v3 06/20] target/riscv: remove cpu->cfg.ext_c

2023-04-05 Thread Alistair Francis
On Thu, Mar 30, 2023 at 3:31 AM Daniel Henrique Barboza wrote: > > Create a new "c" RISCVCPUMisaExtConfig property that will update > env->misa_ext* with RVC. Instances of cpu->cfg.ext_c and similar are > replaced with riscv_has_ext(env, RVC). > > Remove the old "c" property and 'ext_c' from RISCV

[PATCH v3 06/20] target/riscv: remove cpu->cfg.ext_c

2023-03-29 Thread Daniel Henrique Barboza
Create a new "c" RISCVCPUMisaExtConfig property that will update env->misa_ext* with RVC. Instances of cpu->cfg.ext_c and similar are replaced with riscv_has_ext(env, RVC). Remove the old "c" property and 'ext_c' from RISCVCPUConfig. Signed-off-by: Daniel Henrique Barboza Reviewed-by: Weiwei Li