mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-18 14:57:12 +00:00
target/riscv: Allow generating hlv/hlvx/hsv instructions
Backports 8c5362acb573b8b1913238a5ddefdeef12f513a8
This commit is contained in:
parent
a8bce9af7a
commit
4972437f93
|
@ -6259,7 +6259,10 @@ riscv_symbols = (
|
||||||
'helper_fsqrt_s',
|
'helper_fsqrt_s',
|
||||||
'helper_fsub_d',
|
'helper_fsub_d',
|
||||||
'helper_fsub_s',
|
'helper_fsub_s',
|
||||||
|
'helper_hyp_load',
|
||||||
|
'helper_hyp_store',
|
||||||
'helper_hyp_tlb_flush',
|
'helper_hyp_tlb_flush',
|
||||||
|
'helper_hyp_x_load',
|
||||||
'helper_mret',
|
'helper_mret',
|
||||||
'helper_tlb_flush',
|
'helper_tlb_flush',
|
||||||
'helper_set_rounding_mode',
|
'helper_set_rounding_mode',
|
||||||
|
|
|
@ -3695,7 +3695,10 @@
|
||||||
#define helper_fsqrt_s helper_fsqrt_s_riscv32
|
#define helper_fsqrt_s helper_fsqrt_s_riscv32
|
||||||
#define helper_fsub_d helper_fsub_d_riscv32
|
#define helper_fsub_d helper_fsub_d_riscv32
|
||||||
#define helper_fsub_s helper_fsub_s_riscv32
|
#define helper_fsub_s helper_fsub_s_riscv32
|
||||||
|
#define helper_hyp_load helper_hyp_load_riscv32
|
||||||
|
#define helper_hyp_store helper_hyp_store_riscv32
|
||||||
#define helper_hyp_tlb_flush helper_hyp_tlb_flush_riscv32
|
#define helper_hyp_tlb_flush helper_hyp_tlb_flush_riscv32
|
||||||
|
#define helper_hyp_x_load helper_hyp_x_load_riscv32
|
||||||
#define helper_mret helper_mret_riscv32
|
#define helper_mret helper_mret_riscv32
|
||||||
#define helper_tlb_flush helper_tlb_flush_riscv32
|
#define helper_tlb_flush helper_tlb_flush_riscv32
|
||||||
#define helper_set_rounding_mode helper_set_rounding_mode_riscv32
|
#define helper_set_rounding_mode helper_set_rounding_mode_riscv32
|
||||||
|
|
|
@ -3695,7 +3695,10 @@
|
||||||
#define helper_fsqrt_s helper_fsqrt_s_riscv64
|
#define helper_fsqrt_s helper_fsqrt_s_riscv64
|
||||||
#define helper_fsub_d helper_fsub_d_riscv64
|
#define helper_fsub_d helper_fsub_d_riscv64
|
||||||
#define helper_fsub_s helper_fsub_s_riscv64
|
#define helper_fsub_s helper_fsub_s_riscv64
|
||||||
|
#define helper_hyp_load helper_hyp_load_riscv64
|
||||||
|
#define helper_hyp_store helper_hyp_store_riscv64
|
||||||
#define helper_hyp_tlb_flush helper_hyp_tlb_flush_riscv64
|
#define helper_hyp_tlb_flush helper_hyp_tlb_flush_riscv64
|
||||||
|
#define helper_hyp_x_load helper_hyp_x_load_riscv64
|
||||||
#define helper_mret helper_mret_riscv64
|
#define helper_mret helper_mret_riscv64
|
||||||
#define helper_tlb_flush helper_tlb_flush_riscv64
|
#define helper_tlb_flush helper_tlb_flush_riscv64
|
||||||
#define helper_set_rounding_mode helper_set_rounding_mode_riscv64
|
#define helper_set_rounding_mode helper_set_rounding_mode_riscv64
|
||||||
|
|
|
@ -444,6 +444,7 @@
|
||||||
#define HSTATUS_SP2V 0x00000200
|
#define HSTATUS_SP2V 0x00000200
|
||||||
#define HSTATUS_VTVM 0x00100000
|
#define HSTATUS_VTVM 0x00100000
|
||||||
#define HSTATUS_VTSR 0x00400000
|
#define HSTATUS_VTSR 0x00400000
|
||||||
|
#define HSTATUS_HU 0x00000200
|
||||||
|
|
||||||
#define HSTATUS32_WPRI 0xFF8FF87E
|
#define HSTATUS32_WPRI 0xFF8FF87E
|
||||||
#define HSTATUS64_WPRI 0xFFFFFFFFFF8FF87EULL
|
#define HSTATUS64_WPRI 0xFFFFFFFFFF8FF87EULL
|
||||||
|
|
|
@ -83,6 +83,9 @@ DEF_HELPER_1(tlb_flush, void, env)
|
||||||
/* Hypervisor functions */
|
/* Hypervisor functions */
|
||||||
#ifndef CONFIG_USER_ONLY
|
#ifndef CONFIG_USER_ONLY
|
||||||
DEF_HELPER_1(hyp_tlb_flush, void, env)
|
DEF_HELPER_1(hyp_tlb_flush, void, env)
|
||||||
|
DEF_HELPER_4(hyp_load, tl, env, tl, tl, tl)
|
||||||
|
DEF_HELPER_5(hyp_store, void, env, tl, tl, tl, tl)
|
||||||
|
DEF_HELPER_4(hyp_x_load, tl, env, tl, tl, tl)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Vector functions */
|
/* Vector functions */
|
||||||
|
|
|
@ -81,3 +81,8 @@ fmv_x_d 1110001 00000 ..... 000 ..... 1010011 @r2
|
||||||
fcvt_d_l 1101001 00010 ..... ... ..... 1010011 @r2_rm
|
fcvt_d_l 1101001 00010 ..... ... ..... 1010011 @r2_rm
|
||||||
fcvt_d_lu 1101001 00011 ..... ... ..... 1010011 @r2_rm
|
fcvt_d_lu 1101001 00011 ..... ... ..... 1010011 @r2_rm
|
||||||
fmv_d_x 1111001 00000 ..... 000 ..... 1010011 @r2
|
fmv_d_x 1111001 00000 ..... 000 ..... 1010011 @r2
|
||||||
|
|
||||||
|
# *** RV32H Base Instruction Set ***
|
||||||
|
hlv_wu 0110100 00001 ..... 100 ..... 1110011 @r2
|
||||||
|
hlv_d 0110110 00000 ..... 100 ..... 1110011 @r2
|
||||||
|
hsv_d 0110111 ..... ..... 100 00000 1110011 @r2_s
|
||||||
|
|
|
@ -78,6 +78,7 @@
|
||||||
@r_vm_0 ...... . ..... ..... ... ..... ....... &rmrr vm=0 %rs2 %rs1 %rd
|
@r_vm_0 ...... . ..... ..... ... ..... ....... &rmrr vm=0 %rs2 %rs1 %rd
|
||||||
@r_wdvm ..... wd:1 vm:1 ..... ..... ... ..... ....... &rwdvm %rs2 %rs1 %rd
|
@r_wdvm ..... wd:1 vm:1 ..... ..... ... ..... ....... &rwdvm %rs2 %rs1 %rd
|
||||||
@r2_zimm . zimm:11 ..... ... ..... ....... %rs1 %rd
|
@r2_zimm . zimm:11 ..... ... ..... ....... %rs1 %rd
|
||||||
|
@r2_s ....... ..... ..... ... ..... ....... %rs2 %rs1
|
||||||
|
|
||||||
@hfence_gvma ....... ..... ..... ... ..... ....... %rs2 %rs1
|
@hfence_gvma ....... ..... ..... ... ..... ....... %rs2 %rs1
|
||||||
@hfence_vvma ....... ..... ..... ... ..... ....... %rs2 %rs1
|
@hfence_vvma ....... ..... ..... ... ..... ....... %rs2 %rs1
|
||||||
|
@ -223,6 +224,16 @@ fcvt_d_w 1101001 00000 ..... ... ..... 1010011 @r2_rm
|
||||||
fcvt_d_wu 1101001 00001 ..... ... ..... 1010011 @r2_rm
|
fcvt_d_wu 1101001 00001 ..... ... ..... 1010011 @r2_rm
|
||||||
|
|
||||||
# *** RV32H Base Instruction Set ***
|
# *** RV32H Base Instruction Set ***
|
||||||
|
hlv_b 0110000 00000 ..... 100 ..... 1110011 @r2
|
||||||
|
hlv_bu 0110000 00001 ..... 100 ..... 1110011 @r2
|
||||||
|
hlv_h 0110010 00000 ..... 100 ..... 1110011 @r2
|
||||||
|
hlv_hu 0110010 00001 ..... 100 ..... 1110011 @r2
|
||||||
|
hlvx_hu 0110010 00011 ..... 100 ..... 1110011 @r2
|
||||||
|
hlv_w 0110100 00000 ..... 100 ..... 1110011 @r2
|
||||||
|
hlvx_wu 0110100 00011 ..... 100 ..... 1110011 @r2
|
||||||
|
hsv_b 0110001 ..... ..... 100 00000 1110011 @r2_s
|
||||||
|
hsv_h 0110011 ..... ..... 100 00000 1110011 @r2_s
|
||||||
|
hsv_w 0110101 ..... ..... 100 00000 1110011 @r2_s
|
||||||
hfence_gvma 0110001 ..... ..... 000 00000 1110011 @hfence_gvma
|
hfence_gvma 0110001 ..... ..... 000 00000 1110011 @hfence_gvma
|
||||||
hfence_vvma 0010001 ..... ..... 000 00000 1110011 @hfence_vvma
|
hfence_vvma 0010001 ..... ..... 000 00000 1110011 @hfence_vvma
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,359 @@
|
||||||
* this program. If not, see <http://www.gnu.org/licenses/>.
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
static bool trans_hlv_b(DisasContext *ctx, arg_hlv_b *a)
|
||||||
|
{
|
||||||
|
REQUIRE_EXT(ctx, RVH);
|
||||||
|
#ifndef CONFIG_USER_ONLY
|
||||||
|
TCGContext *tcg_ctx = ctx->uc->tcg_ctx;
|
||||||
|
TCGv t0 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv t1 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv mem_idx = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv memop = tcg_temp_new(tcg_ctx);
|
||||||
|
|
||||||
|
gen_get_gpr(ctx, t0, a->rs1);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, mem_idx, ctx->mem_idx);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, memop, MO_SB);
|
||||||
|
|
||||||
|
gen_helper_hyp_load(tcg_ctx, t1, tcg_ctx->cpu_env, t0, mem_idx, memop);
|
||||||
|
gen_set_gpr(ctx, a->rd, t1);
|
||||||
|
|
||||||
|
tcg_temp_free(tcg_ctx, t0);
|
||||||
|
tcg_temp_free(tcg_ctx, t1);
|
||||||
|
tcg_temp_free(tcg_ctx, mem_idx);
|
||||||
|
tcg_temp_free(tcg_ctx, memop);
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool trans_hlv_h(DisasContext *ctx, arg_hlv_h *a)
|
||||||
|
{
|
||||||
|
REQUIRE_EXT(ctx, RVH);
|
||||||
|
#ifndef CONFIG_USER_ONLY
|
||||||
|
TCGContext *tcg_ctx = ctx->uc->tcg_ctx;
|
||||||
|
TCGv t0 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv t1 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv mem_idx = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv memop = tcg_temp_new(tcg_ctx);
|
||||||
|
|
||||||
|
gen_get_gpr(ctx, t0, a->rs1);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, mem_idx, ctx->mem_idx);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, memop, MO_TESW);
|
||||||
|
|
||||||
|
gen_helper_hyp_load(tcg_ctx, t1, tcg_ctx->cpu_env, t0, mem_idx, memop);
|
||||||
|
gen_set_gpr(ctx, a->rd, t1);
|
||||||
|
|
||||||
|
tcg_temp_free(tcg_ctx, t0);
|
||||||
|
tcg_temp_free(tcg_ctx, t1);
|
||||||
|
tcg_temp_free(tcg_ctx, mem_idx);
|
||||||
|
tcg_temp_free(tcg_ctx, memop);
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool trans_hlv_w(DisasContext *ctx, arg_hlv_w *a)
|
||||||
|
{
|
||||||
|
REQUIRE_EXT(ctx, RVH);
|
||||||
|
#ifndef CONFIG_USER_ONLY
|
||||||
|
TCGContext *tcg_ctx = ctx->uc->tcg_ctx;
|
||||||
|
TCGv t0 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv t1 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv mem_idx = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv memop = tcg_temp_new(tcg_ctx);
|
||||||
|
|
||||||
|
gen_get_gpr(ctx, t0, a->rs1);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, mem_idx, ctx->mem_idx);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, memop, MO_TESL);
|
||||||
|
|
||||||
|
gen_helper_hyp_load(tcg_ctx, t1, tcg_ctx->cpu_env, t0, mem_idx, memop);
|
||||||
|
gen_set_gpr(ctx, a->rd, t1);
|
||||||
|
|
||||||
|
tcg_temp_free(tcg_ctx, t0);
|
||||||
|
tcg_temp_free(tcg_ctx, t1);
|
||||||
|
tcg_temp_free(tcg_ctx, mem_idx);
|
||||||
|
tcg_temp_free(tcg_ctx, memop);
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool trans_hlv_bu(DisasContext *ctx, arg_hlv_bu *a)
|
||||||
|
{
|
||||||
|
REQUIRE_EXT(ctx, RVH);
|
||||||
|
#ifndef CONFIG_USER_ONLY
|
||||||
|
TCGContext *tcg_ctx = ctx->uc->tcg_ctx;
|
||||||
|
TCGv t0 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv t1 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv mem_idx = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv memop = tcg_temp_new(tcg_ctx);
|
||||||
|
|
||||||
|
gen_get_gpr(ctx, t0, a->rs1);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, mem_idx, ctx->mem_idx);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, memop, MO_UB);
|
||||||
|
|
||||||
|
gen_helper_hyp_load(tcg_ctx, t1, tcg_ctx->cpu_env, t0, mem_idx, memop);
|
||||||
|
gen_set_gpr(ctx, a->rd, t1);
|
||||||
|
|
||||||
|
tcg_temp_free(tcg_ctx, t0);
|
||||||
|
tcg_temp_free(tcg_ctx, t1);
|
||||||
|
tcg_temp_free(tcg_ctx, mem_idx);
|
||||||
|
tcg_temp_free(tcg_ctx, memop);
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool trans_hlv_hu(DisasContext *ctx, arg_hlv_hu *a)
|
||||||
|
{
|
||||||
|
REQUIRE_EXT(ctx, RVH);
|
||||||
|
#ifndef CONFIG_USER_ONLY
|
||||||
|
TCGContext *tcg_ctx = ctx->uc->tcg_ctx;
|
||||||
|
TCGv t0 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv t1 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv mem_idx = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv memop = tcg_temp_new(tcg_ctx);
|
||||||
|
|
||||||
|
gen_get_gpr(ctx, t0, a->rs1);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, mem_idx, ctx->mem_idx);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, memop, MO_TEUW);
|
||||||
|
|
||||||
|
gen_helper_hyp_load(tcg_ctx, t1, tcg_ctx->cpu_env, t0, mem_idx, memop);
|
||||||
|
gen_set_gpr(ctx, a->rd, t1);
|
||||||
|
|
||||||
|
tcg_temp_free(tcg_ctx, t0);
|
||||||
|
tcg_temp_free(tcg_ctx, t1);
|
||||||
|
tcg_temp_free(tcg_ctx, mem_idx);
|
||||||
|
tcg_temp_free(tcg_ctx, memop);
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool trans_hsv_b(DisasContext *ctx, arg_hsv_b *a)
|
||||||
|
{
|
||||||
|
REQUIRE_EXT(ctx, RVH);
|
||||||
|
#ifndef CONFIG_USER_ONLY
|
||||||
|
TCGContext *tcg_ctx = ctx->uc->tcg_ctx;
|
||||||
|
TCGv t0 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv dat = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv mem_idx = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv memop = tcg_temp_new(tcg_ctx);
|
||||||
|
|
||||||
|
gen_get_gpr(ctx, t0, a->rs1);
|
||||||
|
gen_get_gpr(ctx, dat, a->rs2);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, mem_idx, ctx->mem_idx);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, memop, MO_SB);
|
||||||
|
|
||||||
|
gen_helper_hyp_store(tcg_ctx, tcg_ctx->cpu_env, t0, dat, mem_idx, memop);
|
||||||
|
|
||||||
|
tcg_temp_free(tcg_ctx, t0);
|
||||||
|
tcg_temp_free(tcg_ctx, dat);
|
||||||
|
tcg_temp_free(tcg_ctx, mem_idx);
|
||||||
|
tcg_temp_free(tcg_ctx, memop);
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool trans_hsv_h(DisasContext *ctx, arg_hsv_h *a)
|
||||||
|
{
|
||||||
|
REQUIRE_EXT(ctx, RVH);
|
||||||
|
#ifndef CONFIG_USER_ONLY
|
||||||
|
TCGContext *tcg_ctx = ctx->uc->tcg_ctx;
|
||||||
|
TCGv t0 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv dat = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv mem_idx = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv memop = tcg_temp_new(tcg_ctx);
|
||||||
|
|
||||||
|
gen_get_gpr(ctx, t0, a->rs1);
|
||||||
|
gen_get_gpr(ctx, dat, a->rs2);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, mem_idx, ctx->mem_idx);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, memop, MO_TESW);
|
||||||
|
|
||||||
|
gen_helper_hyp_store(tcg_ctx, tcg_ctx->cpu_env, t0, dat, mem_idx, memop);
|
||||||
|
|
||||||
|
tcg_temp_free(tcg_ctx, t0);
|
||||||
|
tcg_temp_free(tcg_ctx, dat);
|
||||||
|
tcg_temp_free(tcg_ctx, mem_idx);
|
||||||
|
tcg_temp_free(tcg_ctx, memop);
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool trans_hsv_w(DisasContext *ctx, arg_hsv_w *a)
|
||||||
|
{
|
||||||
|
REQUIRE_EXT(ctx, RVH);
|
||||||
|
#ifndef CONFIG_USER_ONLY
|
||||||
|
TCGContext *tcg_ctx = ctx->uc->tcg_ctx;
|
||||||
|
TCGv t0 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv dat = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv mem_idx = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv memop = tcg_temp_new(tcg_ctx);
|
||||||
|
|
||||||
|
gen_get_gpr(ctx, t0, a->rs1);
|
||||||
|
gen_get_gpr(ctx, dat, a->rs2);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, mem_idx, ctx->mem_idx);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, memop, MO_TESL);
|
||||||
|
|
||||||
|
gen_helper_hyp_store(tcg_ctx, tcg_ctx->cpu_env, t0, dat, mem_idx, memop);
|
||||||
|
|
||||||
|
tcg_temp_free(tcg_ctx, t0);
|
||||||
|
tcg_temp_free(tcg_ctx, dat);
|
||||||
|
tcg_temp_free(tcg_ctx, mem_idx);
|
||||||
|
tcg_temp_free(tcg_ctx, memop);
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifdef TARGET_RISCV64
|
||||||
|
static bool trans_hlv_wu(DisasContext *ctx, arg_hlv_wu *a)
|
||||||
|
{
|
||||||
|
REQUIRE_EXT(ctx, RVH);
|
||||||
|
#ifndef CONFIG_USER_ONLY
|
||||||
|
TCGContext *tcg_ctx = ctx->uc->tcg_ctx;
|
||||||
|
TCGv t0 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv t1 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv mem_idx = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv memop = tcg_temp_new(tcg_ctx);
|
||||||
|
|
||||||
|
gen_get_gpr(ctx, t0, a->rs1);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, mem_idx, ctx->mem_idx);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, memop, MO_TEUL);
|
||||||
|
|
||||||
|
gen_helper_hyp_load(tcg_ctx, t1, tcg_ctx->cpu_env, t0, mem_idx, memop);
|
||||||
|
gen_set_gpr(ctx, a->rd, t1);
|
||||||
|
|
||||||
|
tcg_temp_free(tcg_ctx, t0);
|
||||||
|
tcg_temp_free(tcg_ctx, t1);
|
||||||
|
tcg_temp_free(tcg_ctx, mem_idx);
|
||||||
|
tcg_temp_free(tcg_ctx, memop);
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool trans_hlv_d(DisasContext *ctx, arg_hlv_d *a)
|
||||||
|
{
|
||||||
|
REQUIRE_EXT(ctx, RVH);
|
||||||
|
#ifndef CONFIG_USER_ONLY
|
||||||
|
TCGContext *tcg_ctx = ctx->uc->tcg_ctx;
|
||||||
|
TCGv t0 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv t1 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv mem_idx = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv memop = tcg_temp_new(tcg_ctx);
|
||||||
|
|
||||||
|
gen_get_gpr(ctx, t0, a->rs1);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, mem_idx, ctx->mem_idx);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, memop, MO_TEQ);
|
||||||
|
|
||||||
|
gen_helper_hyp_load(tcg_ctx, t1, tcg_ctx->cpu_env, t0, mem_idx, memop);
|
||||||
|
gen_set_gpr(ctx, a->rd, t1);
|
||||||
|
|
||||||
|
tcg_temp_free(tcg_ctx, t0);
|
||||||
|
tcg_temp_free(tcg_ctx, t1);
|
||||||
|
tcg_temp_free(tcg_ctx, mem_idx);
|
||||||
|
tcg_temp_free(tcg_ctx, memop);
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool trans_hsv_d(DisasContext *ctx, arg_hsv_d *a)
|
||||||
|
{
|
||||||
|
REQUIRE_EXT(ctx, RVH);
|
||||||
|
#ifndef CONFIG_USER_ONLY
|
||||||
|
TCGContext *tcg_ctx = ctx->uc->tcg_ctx;
|
||||||
|
TCGv t0 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv dat = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv mem_idx = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv memop = tcg_temp_new(tcg_ctx);
|
||||||
|
|
||||||
|
gen_get_gpr(ctx, t0, a->rs1);
|
||||||
|
gen_get_gpr(ctx, dat, a->rs2);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, mem_idx, ctx->mem_idx);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, memop, MO_TEQ);
|
||||||
|
|
||||||
|
gen_helper_hyp_store(tcg_ctx, tcg_ctx->cpu_env, t0, dat, mem_idx, memop);
|
||||||
|
|
||||||
|
tcg_temp_free(tcg_ctx, t0);
|
||||||
|
tcg_temp_free(tcg_ctx, dat);
|
||||||
|
tcg_temp_free(tcg_ctx, mem_idx);
|
||||||
|
tcg_temp_free(tcg_ctx, memop);
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static bool trans_hlvx_hu(DisasContext *ctx, arg_hlvx_hu *a)
|
||||||
|
{
|
||||||
|
REQUIRE_EXT(ctx, RVH);
|
||||||
|
#ifndef CONFIG_USER_ONLY
|
||||||
|
TCGContext *tcg_ctx = ctx->uc->tcg_ctx;
|
||||||
|
TCGv t0 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv t1 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv mem_idx = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv memop = tcg_temp_new(tcg_ctx);
|
||||||
|
|
||||||
|
gen_get_gpr(ctx, t0, a->rs1);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, mem_idx, ctx->mem_idx);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, memop, MO_TEUW);
|
||||||
|
|
||||||
|
gen_helper_hyp_x_load(tcg_ctx, t1, tcg_ctx->cpu_env, t0, mem_idx, memop);
|
||||||
|
gen_set_gpr(ctx, a->rd, t1);
|
||||||
|
|
||||||
|
tcg_temp_free(tcg_ctx, t0);
|
||||||
|
tcg_temp_free(tcg_ctx, t1);
|
||||||
|
tcg_temp_free(tcg_ctx, mem_idx);
|
||||||
|
tcg_temp_free(tcg_ctx, memop);
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool trans_hlvx_wu(DisasContext *ctx, arg_hlvx_wu *a)
|
||||||
|
{
|
||||||
|
REQUIRE_EXT(ctx, RVH);
|
||||||
|
#ifndef CONFIG_USER_ONLY
|
||||||
|
TCGContext *tcg_ctx = ctx->uc->tcg_ctx;
|
||||||
|
TCGv t0 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv t1 = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv mem_idx = tcg_temp_new(tcg_ctx);
|
||||||
|
TCGv memop = tcg_temp_new(tcg_ctx);
|
||||||
|
|
||||||
|
gen_get_gpr(ctx, t0, a->rs1);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, mem_idx, ctx->mem_idx);
|
||||||
|
tcg_gen_movi_tl(tcg_ctx, memop, MO_TEUL);
|
||||||
|
|
||||||
|
gen_helper_hyp_x_load(tcg_ctx, t1, tcg_ctx->cpu_env, t0, mem_idx, memop);
|
||||||
|
gen_set_gpr(ctx, a->rd, t1);
|
||||||
|
|
||||||
|
tcg_temp_free(tcg_ctx, t0);
|
||||||
|
tcg_temp_free(tcg_ctx, t1);
|
||||||
|
tcg_temp_free(tcg_ctx, mem_idx);
|
||||||
|
tcg_temp_free(tcg_ctx, memop);
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
static bool trans_hfence_gvma(DisasContext *ctx, arg_sfence_vma *a)
|
static bool trans_hfence_gvma(DisasContext *ctx, arg_sfence_vma *a)
|
||||||
{
|
{
|
||||||
REQUIRE_EXT(ctx, RVH);
|
REQUIRE_EXT(ctx, RVH);
|
||||||
|
|
|
@ -206,4 +206,120 @@ void helper_hyp_tlb_flush(CPURISCVState *env)
|
||||||
riscv_raise_exception(env, RISCV_EXCP_ILLEGAL_INST, GETPC());
|
riscv_raise_exception(env, RISCV_EXCP_ILLEGAL_INST, GETPC());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
target_ulong helper_hyp_load(CPURISCVState *env, target_ulong address,
|
||||||
|
target_ulong attrs, target_ulong memop)
|
||||||
|
{
|
||||||
|
if (env->priv == PRV_M ||
|
||||||
|
(env->priv == PRV_S && !riscv_cpu_virt_enabled(env)) ||
|
||||||
|
(env->priv == PRV_U && !riscv_cpu_virt_enabled(env) &&
|
||||||
|
get_field(env->hstatus, HSTATUS_HU))) {
|
||||||
|
target_ulong pte;
|
||||||
|
int mmu_idx = cpu_mmu_index(env, false);
|
||||||
|
|
||||||
|
riscv_cpu_set_two_stage_lookup(env, true);
|
||||||
|
|
||||||
|
switch (memop) {
|
||||||
|
case MO_SB:
|
||||||
|
pte = cpu_ldsb_mmuidx_ra(env, address, mmu_idx, GETPC());
|
||||||
|
break;
|
||||||
|
case MO_UB:
|
||||||
|
pte = cpu_ldub_mmuidx_ra(env, address, mmu_idx, GETPC());
|
||||||
|
break;
|
||||||
|
case MO_TESW:
|
||||||
|
pte = cpu_ldsw_mmuidx_ra(env, address, mmu_idx, GETPC());
|
||||||
|
break;
|
||||||
|
case MO_TEUW:
|
||||||
|
pte = cpu_lduw_mmuidx_ra(env, address, mmu_idx, GETPC());
|
||||||
|
break;
|
||||||
|
case MO_TESL:
|
||||||
|
pte = cpu_ldl_mmuidx_ra(env, address, mmu_idx, GETPC());
|
||||||
|
break;
|
||||||
|
case MO_TEUL:
|
||||||
|
pte = cpu_ldl_mmuidx_ra(env, address, mmu_idx, GETPC());
|
||||||
|
break;
|
||||||
|
case MO_TEQ:
|
||||||
|
pte = cpu_ldq_mmuidx_ra(env, address, mmu_idx, GETPC());
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
g_assert_not_reached();
|
||||||
|
}
|
||||||
|
|
||||||
|
riscv_cpu_set_two_stage_lookup(env, false);
|
||||||
|
|
||||||
|
return pte;
|
||||||
|
}
|
||||||
|
|
||||||
|
riscv_raise_exception(env, RISCV_EXCP_ILLEGAL_INST, GETPC());
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void helper_hyp_store(CPURISCVState *env, target_ulong address,
|
||||||
|
target_ulong val, target_ulong attrs, target_ulong memop)
|
||||||
|
{
|
||||||
|
if (env->priv == PRV_M ||
|
||||||
|
(env->priv == PRV_S && !riscv_cpu_virt_enabled(env)) ||
|
||||||
|
(env->priv == PRV_U && !riscv_cpu_virt_enabled(env) &&
|
||||||
|
get_field(env->hstatus, HSTATUS_HU))) {
|
||||||
|
riscv_cpu_set_two_stage_lookup(env, true);
|
||||||
|
int mmu_idx = cpu_mmu_index(env, false);
|
||||||
|
|
||||||
|
switch (memop) {
|
||||||
|
case MO_SB:
|
||||||
|
case MO_UB:
|
||||||
|
cpu_stb_mmuidx_ra(env, address, val, mmu_idx, GETPC());
|
||||||
|
break;
|
||||||
|
case MO_TESW:
|
||||||
|
case MO_TEUW:
|
||||||
|
cpu_stw_mmuidx_ra(env, address, val, mmu_idx, GETPC());
|
||||||
|
break;
|
||||||
|
case MO_TESL:
|
||||||
|
case MO_TEUL:
|
||||||
|
cpu_stl_mmuidx_ra(env, address, val, mmu_idx, GETPC());
|
||||||
|
break;
|
||||||
|
case MO_TEQ:
|
||||||
|
cpu_stq_mmuidx_ra(env, address, val, mmu_idx, GETPC());
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
g_assert_not_reached();
|
||||||
|
}
|
||||||
|
|
||||||
|
riscv_cpu_set_two_stage_lookup(env, false);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
riscv_raise_exception(env, RISCV_EXCP_ILLEGAL_INST, GETPC());
|
||||||
|
}
|
||||||
|
|
||||||
|
target_ulong helper_hyp_x_load(CPURISCVState *env, target_ulong address,
|
||||||
|
target_ulong attrs, target_ulong memop)
|
||||||
|
{
|
||||||
|
if (env->priv == PRV_M ||
|
||||||
|
(env->priv == PRV_S && !riscv_cpu_virt_enabled(env)) ||
|
||||||
|
(env->priv == PRV_U && !riscv_cpu_virt_enabled(env) &&
|
||||||
|
get_field(env->hstatus, HSTATUS_HU))) {
|
||||||
|
target_ulong pte;
|
||||||
|
|
||||||
|
riscv_cpu_set_two_stage_lookup(env, true);
|
||||||
|
|
||||||
|
switch (memop) {
|
||||||
|
case MO_TEUL:
|
||||||
|
pte = cpu_ldl_mmuidx_ra(env, address, cpu_mmu_index(env, true), GETPC());
|
||||||
|
break;
|
||||||
|
case MO_TEUW:
|
||||||
|
pte = cpu_lduw_mmuidx_ra(env, address, cpu_mmu_index(env, true), GETPC());
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
g_assert_not_reached();
|
||||||
|
}
|
||||||
|
|
||||||
|
riscv_cpu_set_two_stage_lookup(env, false);
|
||||||
|
|
||||||
|
return pte;
|
||||||
|
}
|
||||||
|
|
||||||
|
riscv_raise_exception(env, RISCV_EXCP_ILLEGAL_INST, GETPC());
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
#endif /* !CONFIG_USER_ONLY */
|
#endif /* !CONFIG_USER_ONLY */
|
||||||
|
|
Loading…
Reference in a new issue