mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
target/riscv: Handle HLV, HSV via helpers
Implement these instructions via helpers, in expectation of determining the mmu_idx to use at runtime. This allows the permission check to also be moved out of line, which allows HLSX to be removed from TB_FLAGS. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Weiwei Li <liweiwei@iscas.ac.cn> Tested-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com> Message-Id: <20230325105429.1142530-11-richard.henderson@linaro.org> Message-Id: <20230412114333.118895-11-richard.henderson@linaro.org> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
a7f112c5fd
commit
0f58cbbeea
6 changed files with 169 additions and 113 deletions
|
@ -16,158 +16,131 @@
|
|||
* this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
static bool check_access(DisasContext *ctx)
|
||||
{
|
||||
if (!ctx->hlsx) {
|
||||
tcg_gen_st_i32(tcg_constant_i32(ctx->opcode), cpu_env,
|
||||
offsetof(CPURISCVState, bins));
|
||||
if (ctx->virt_enabled) {
|
||||
generate_exception(ctx, RISCV_EXCP_VIRT_INSTRUCTION_FAULT);
|
||||
} else {
|
||||
generate_exception(ctx, RISCV_EXCP_ILLEGAL_INST);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
|
||||
static bool do_hlv(DisasContext *ctx, arg_r2 *a, MemOp mop)
|
||||
{
|
||||
#ifdef CONFIG_USER_ONLY
|
||||
return false;
|
||||
#define do_hlv(ctx, a, func) false
|
||||
#define do_hsv(ctx, a, func) false
|
||||
#else
|
||||
decode_save_opc(ctx);
|
||||
if (check_access(ctx)) {
|
||||
TCGv dest = dest_gpr(ctx, a->rd);
|
||||
TCGv addr = get_gpr(ctx, a->rs1, EXT_NONE);
|
||||
int mem_idx = ctx->mem_idx | MMU_HYP_ACCESS_BIT;
|
||||
tcg_gen_qemu_ld_tl(dest, addr, mem_idx, mop);
|
||||
gen_set_gpr(ctx, a->rd, dest);
|
||||
}
|
||||
return true;
|
||||
#endif
|
||||
static void gen_helper_hyp_hlv_b(TCGv r, TCGv_env e, TCGv a)
|
||||
{
|
||||
gen_helper_hyp_hlv_bu(r, e, a);
|
||||
tcg_gen_ext8s_tl(r, r);
|
||||
}
|
||||
|
||||
static void gen_helper_hyp_hlv_h(TCGv r, TCGv_env e, TCGv a)
|
||||
{
|
||||
gen_helper_hyp_hlv_hu(r, e, a);
|
||||
tcg_gen_ext16s_tl(r, r);
|
||||
}
|
||||
|
||||
static void gen_helper_hyp_hlv_w(TCGv r, TCGv_env e, TCGv a)
|
||||
{
|
||||
gen_helper_hyp_hlv_wu(r, e, a);
|
||||
tcg_gen_ext32s_tl(r, r);
|
||||
}
|
||||
|
||||
static bool do_hlv(DisasContext *ctx, arg_r2 *a,
|
||||
void (*func)(TCGv, TCGv_env, TCGv))
|
||||
{
|
||||
TCGv dest = dest_gpr(ctx, a->rd);
|
||||
TCGv addr = get_gpr(ctx, a->rs1, EXT_NONE);
|
||||
|
||||
decode_save_opc(ctx);
|
||||
func(dest, cpu_env, addr);
|
||||
gen_set_gpr(ctx, a->rd, dest);
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool do_hsv(DisasContext *ctx, arg_r2_s *a,
|
||||
void (*func)(TCGv_env, TCGv, TCGv))
|
||||
{
|
||||
TCGv addr = get_gpr(ctx, a->rs1, EXT_NONE);
|
||||
TCGv data = get_gpr(ctx, a->rs2, EXT_NONE);
|
||||
|
||||
decode_save_opc(ctx);
|
||||
func(cpu_env, addr, data);
|
||||
return true;
|
||||
}
|
||||
#endif /* CONFIG_USER_ONLY */
|
||||
|
||||
static bool trans_hlv_b(DisasContext *ctx, arg_hlv_b *a)
|
||||
{
|
||||
REQUIRE_EXT(ctx, RVH);
|
||||
return do_hlv(ctx, a, MO_SB);
|
||||
return do_hlv(ctx, a, gen_helper_hyp_hlv_b);
|
||||
}
|
||||
|
||||
static bool trans_hlv_h(DisasContext *ctx, arg_hlv_h *a)
|
||||
{
|
||||
REQUIRE_EXT(ctx, RVH);
|
||||
return do_hlv(ctx, a, MO_TESW);
|
||||
return do_hlv(ctx, a, gen_helper_hyp_hlv_h);
|
||||
}
|
||||
|
||||
static bool trans_hlv_w(DisasContext *ctx, arg_hlv_w *a)
|
||||
{
|
||||
REQUIRE_EXT(ctx, RVH);
|
||||
return do_hlv(ctx, a, MO_TESL);
|
||||
return do_hlv(ctx, a, gen_helper_hyp_hlv_w);
|
||||
}
|
||||
|
||||
static bool trans_hlv_bu(DisasContext *ctx, arg_hlv_bu *a)
|
||||
{
|
||||
REQUIRE_EXT(ctx, RVH);
|
||||
return do_hlv(ctx, a, MO_UB);
|
||||
return do_hlv(ctx, a, gen_helper_hyp_hlv_bu);
|
||||
}
|
||||
|
||||
static bool trans_hlv_hu(DisasContext *ctx, arg_hlv_hu *a)
|
||||
{
|
||||
REQUIRE_EXT(ctx, RVH);
|
||||
return do_hlv(ctx, a, MO_TEUW);
|
||||
}
|
||||
|
||||
static bool do_hsv(DisasContext *ctx, arg_r2_s *a, MemOp mop)
|
||||
{
|
||||
#ifdef CONFIG_USER_ONLY
|
||||
return false;
|
||||
#else
|
||||
decode_save_opc(ctx);
|
||||
if (check_access(ctx)) {
|
||||
TCGv addr = get_gpr(ctx, a->rs1, EXT_NONE);
|
||||
TCGv data = get_gpr(ctx, a->rs2, EXT_NONE);
|
||||
int mem_idx = ctx->mem_idx | MMU_HYP_ACCESS_BIT;
|
||||
tcg_gen_qemu_st_tl(data, addr, mem_idx, mop);
|
||||
}
|
||||
return true;
|
||||
#endif
|
||||
return do_hlv(ctx, a, gen_helper_hyp_hlv_hu);
|
||||
}
|
||||
|
||||
static bool trans_hsv_b(DisasContext *ctx, arg_hsv_b *a)
|
||||
{
|
||||
REQUIRE_EXT(ctx, RVH);
|
||||
return do_hsv(ctx, a, MO_SB);
|
||||
return do_hsv(ctx, a, gen_helper_hyp_hsv_b);
|
||||
}
|
||||
|
||||
static bool trans_hsv_h(DisasContext *ctx, arg_hsv_h *a)
|
||||
{
|
||||
REQUIRE_EXT(ctx, RVH);
|
||||
return do_hsv(ctx, a, MO_TESW);
|
||||
return do_hsv(ctx, a, gen_helper_hyp_hsv_h);
|
||||
}
|
||||
|
||||
static bool trans_hsv_w(DisasContext *ctx, arg_hsv_w *a)
|
||||
{
|
||||
REQUIRE_EXT(ctx, RVH);
|
||||
return do_hsv(ctx, a, MO_TESL);
|
||||
return do_hsv(ctx, a, gen_helper_hyp_hsv_w);
|
||||
}
|
||||
|
||||
static bool trans_hlv_wu(DisasContext *ctx, arg_hlv_wu *a)
|
||||
{
|
||||
REQUIRE_64BIT(ctx);
|
||||
REQUIRE_EXT(ctx, RVH);
|
||||
return do_hlv(ctx, a, MO_TEUL);
|
||||
return do_hlv(ctx, a, gen_helper_hyp_hlv_wu);
|
||||
}
|
||||
|
||||
static bool trans_hlv_d(DisasContext *ctx, arg_hlv_d *a)
|
||||
{
|
||||
REQUIRE_64BIT(ctx);
|
||||
REQUIRE_EXT(ctx, RVH);
|
||||
return do_hlv(ctx, a, MO_TEUQ);
|
||||
return do_hlv(ctx, a, gen_helper_hyp_hlv_d);
|
||||
}
|
||||
|
||||
static bool trans_hsv_d(DisasContext *ctx, arg_hsv_d *a)
|
||||
{
|
||||
REQUIRE_64BIT(ctx);
|
||||
REQUIRE_EXT(ctx, RVH);
|
||||
return do_hsv(ctx, a, MO_TEUQ);
|
||||
return do_hsv(ctx, a, gen_helper_hyp_hsv_d);
|
||||
}
|
||||
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
static bool do_hlvx(DisasContext *ctx, arg_r2 *a,
|
||||
void (*func)(TCGv, TCGv_env, TCGv))
|
||||
{
|
||||
decode_save_opc(ctx);
|
||||
if (check_access(ctx)) {
|
||||
TCGv dest = dest_gpr(ctx, a->rd);
|
||||
TCGv addr = get_gpr(ctx, a->rs1, EXT_NONE);
|
||||
func(dest, cpu_env, addr);
|
||||
gen_set_gpr(ctx, a->rd, dest);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
|
||||
static bool trans_hlvx_hu(DisasContext *ctx, arg_hlvx_hu *a)
|
||||
{
|
||||
REQUIRE_EXT(ctx, RVH);
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
return do_hlvx(ctx, a, gen_helper_hyp_hlvx_hu);
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
return do_hlv(ctx, a, gen_helper_hyp_hlvx_hu);
|
||||
}
|
||||
|
||||
static bool trans_hlvx_wu(DisasContext *ctx, arg_hlvx_wu *a)
|
||||
{
|
||||
REQUIRE_EXT(ctx, RVH);
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
return do_hlvx(ctx, a, gen_helper_hyp_hlvx_wu);
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
return do_hlv(ctx, a, gen_helper_hyp_hlvx_wu);
|
||||
}
|
||||
|
||||
static bool trans_hfence_gvma(DisasContext *ctx, arg_sfence_vma *a)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue