Home
last modified time | relevance | path

Searched refs:use_asid (Results 1 – 1 of 1) sorted by relevance

/openbmc/qemu/target/sh4/
H A Dhelper.c234 tlb_t * entries, uint8_t nbtlb, int use_asid) in find_tlb_entry() argument
246 if (!entries[i].sh && use_asid && entries[i].asid != asid) in find_tlb_entry()
294 int use_asid) in find_itlb_entry() argument
298 e = find_tlb_entry(env, address, env->itlb, ITLB_SIZE, use_asid); in find_itlb_entry()
311 static int find_utlb_entry(CPUSH4State * env, target_ulong address, int use_asid) in find_utlb_entry() argument
317 return find_tlb_entry(env, address, env->utlb, UTLB_SIZE, use_asid); in find_utlb_entry()
331 int use_asid, n; in get_mmu_address() local
334 use_asid = !(env->mmucr & MMUCR_SV) || !(env->sr & (1u << SR_MD)); in get_mmu_address()
337 n = find_itlb_entry(env, address, use_asid); in get_mmu_address()
346 n = find_utlb_entry(env, address, use_asid); in get_mmu_address()
[all …]