mirror of
https://github.com/qemu/qemu.git
synced 2026-07-08 17:46:10 +00:00
In preparation of removing the cpu_ldl_code() and cpu_ldq_code() wrappers, inline them. Since RISC-V instructions are always stored in little-endian order (see "Volume I: RISC-V Unprivileged ISA" document, chapter 'Instruction Encoding Spaces and Prefixes': "instruction fetch in RISC-V is little-endian"), replace MO_TE -> MO_LE. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-ID: <20260202214317.99090-1-philmd@linaro.org>
59 lines
1.7 KiB
C
59 lines
1.7 KiB
C
/*
|
|
* RISC-V Zcmt Extension Helper for QEMU.
|
|
*
|
|
* Copyright (c) 2021-2022 PLCT Lab
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2 or later, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "cpu.h"
|
|
#include "exec/helper-proto.h"
|
|
#include "accel/tcg/cpu-ldst.h"
|
|
|
|
target_ulong HELPER(cm_jalt)(CPURISCVState *env, uint32_t index)
|
|
{
|
|
unsigned mmu_index = cpu_mmu_index(env_cpu(env), true);
|
|
MemOpIdx oi;
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
RISCVException ret = smstateen_acc_ok(env, 0, SMSTATEEN0_JVT);
|
|
if (ret != RISCV_EXCP_NONE) {
|
|
riscv_raise_exception(env, ret, 0);
|
|
}
|
|
#endif
|
|
|
|
target_ulong target;
|
|
target_ulong val = env->jvt;
|
|
int xlen = riscv_cpu_xlen(env);
|
|
uint8_t mode = get_field(val, JVT_MODE);
|
|
target_ulong base = val & JVT_BASE;
|
|
target_ulong t0;
|
|
|
|
if (mode != 0) {
|
|
riscv_raise_exception(env, RISCV_EXCP_ILLEGAL_INST, 0);
|
|
}
|
|
|
|
if (xlen == 32) {
|
|
oi = make_memop_idx(MO_LEUL, mmu_index);
|
|
t0 = base + (index << 2);
|
|
target = cpu_ldl_code_mmu(env, t0, oi, 0);
|
|
} else {
|
|
oi = make_memop_idx(MO_LEUQ, mmu_index);
|
|
t0 = base + (index << 3);
|
|
target = cpu_ldq_code_mmu(env, t0, oi, 0);
|
|
}
|
|
|
|
return target & ~0x1;
|
|
}
|