mirror of https://github.com/xemu-project/xemu.git
target/hppa: allow multiple itlbp without itlba
The ODE software calls itlbp on existing TLB entries without calling itlba first, so this seems to be valid. Signed-off-by: Sven Schnelle <svens@stackframe.org> Message-Id: <20190311191602.25796-9-svens@stackframe.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
6e5f530025
commit
38188fd216
|
@ -278,7 +278,7 @@ void HELPER(itlbp)(CPUHPPAState *env, target_ulong addr, target_ureg reg)
|
||||||
{
|
{
|
||||||
hppa_tlb_entry *ent = hppa_find_tlb(env, addr);
|
hppa_tlb_entry *ent = hppa_find_tlb(env, addr);
|
||||||
|
|
||||||
if (unlikely(ent == NULL || ent->entry_valid)) {
|
if (unlikely(ent == NULL)) {
|
||||||
qemu_log_mask(LOG_GUEST_ERROR, "ITLBP not following ITLBA\n");
|
qemu_log_mask(LOG_GUEST_ERROR, "ITLBP not following ITLBA\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue