Home
last modified time | relevance | path

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

/qemu/target/sh4/
H A Dhelper.c235 tlb_t * entries, uint8_t nbtlb, int use_asid) in find_tlb_entry() argument
247 if (!entries[i].sh && use_asid && entries[i].asid != asid) in find_tlb_entry()
295 int use_asid) in find_itlb_entry() argument
299 e = find_tlb_entry(env, address, env->itlb, ITLB_SIZE, use_asid); in find_itlb_entry()
312 static int find_utlb_entry(CPUSH4State * env, target_ulong address, int use_asid) in find_utlb_entry() argument
318 return find_tlb_entry(env, address, env->utlb, UTLB_SIZE, use_asid); in find_utlb_entry()
332 int use_asid, n; in get_mmu_address() local
335 use_asid = !(env->mmucr & MMUCR_SV) || !(env->sr & (1u << SR_MD)); in get_mmu_address()
338 n = find_itlb_entry(env, address, use_asid); in get_mmu_address()
347 n = find_utlb_entry(env, address, use_asid); in get_mmu_address()
[all …]