mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
target/arm: Rename mte_probe1 to mte_probe
For consistency with the mte_check1 + mte_checkN merge to mte_check, rename the probe function as well. Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20210416183106.1516563-8-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
bd47b61c5e
commit
d304d280b3
3 changed files with 7 additions and 7 deletions
|
@ -4869,7 +4869,7 @@ void sve_ldnfff1_r(CPUARMState *env, void *vg, const target_ulong addr,
|
|||
/* Watchpoint hit, see below. */
|
||||
goto do_fault;
|
||||
}
|
||||
if (mtedesc && !mte_probe1(env, mtedesc, addr + mem_off)) {
|
||||
if (mtedesc && !mte_probe(env, mtedesc, addr + mem_off)) {
|
||||
goto do_fault;
|
||||
}
|
||||
/*
|
||||
|
@ -4919,7 +4919,7 @@ void sve_ldnfff1_r(CPUARMState *env, void *vg, const target_ulong addr,
|
|||
& BP_MEM_READ)) {
|
||||
goto do_fault;
|
||||
}
|
||||
if (mtedesc && !mte_probe1(env, mtedesc, addr + mem_off)) {
|
||||
if (mtedesc && !mte_probe(env, mtedesc, addr + mem_off)) {
|
||||
goto do_fault;
|
||||
}
|
||||
host_fn(vd, reg_off, host + mem_off);
|
||||
|
@ -5588,7 +5588,7 @@ void sve_ldff1_z(CPUARMState *env, void *vd, uint64_t *vg, void *vm,
|
|||
}
|
||||
if (mtedesc &&
|
||||
arm_tlb_mte_tagged(&info.attrs) &&
|
||||
!mte_probe1(env, mtedesc, addr)) {
|
||||
!mte_probe(env, mtedesc, addr)) {
|
||||
goto fault;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue