mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
target/riscv: Update check for Zca/Zcf/Zcd
Even though Zca/Zcf/Zcd can be included by C/F/D, however, their priv version is higher than the priv version of C/F/D. So if we use check for them instead of check for C/F/D totally, it will trigger new problem when we try to disable the extensions based on the configured priv version. Signed-off-by: Weiwei Li <liweiwei@iscas.ac.cn> Signed-off-by: Junqiang Wang <wangjunqiang@iscas.ac.cn> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-Id: <20230517135714.211809-7-dbarboza@ventanamicro.com> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
61a33ea95a
commit
d33e39f995
4 changed files with 21 additions and 15 deletions
|
@ -56,7 +56,7 @@ static bool trans_jalr(DisasContext *ctx, arg_jalr *a)
|
|||
tcg_gen_andi_tl(cpu_pc, cpu_pc, (target_ulong)-2);
|
||||
|
||||
gen_set_pc(ctx, cpu_pc);
|
||||
if (!ctx->cfg_ptr->ext_zca) {
|
||||
if (!has_ext(ctx, RVC) && !ctx->cfg_ptr->ext_zca) {
|
||||
TCGv t0 = tcg_temp_new();
|
||||
|
||||
misaligned = gen_new_label();
|
||||
|
@ -169,7 +169,8 @@ static bool gen_branch(DisasContext *ctx, arg_b *a, TCGCond cond)
|
|||
|
||||
gen_set_label(l); /* branch taken */
|
||||
|
||||
if (!ctx->cfg_ptr->ext_zca && ((ctx->base.pc_next + a->imm) & 0x3)) {
|
||||
if (!has_ext(ctx, RVC) && !ctx->cfg_ptr->ext_zca &&
|
||||
((ctx->base.pc_next + a->imm) & 0x3)) {
|
||||
/* misaligned */
|
||||
gen_exception_inst_addr_mis(ctx);
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue