Home
last modified time | relevance | path

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

/openbmc/qemu/target/riscv/
H A Dcpu_helper.c1200 target_ulong updated_pte = pte; in get_physical_address() local
1207 updated_pte |= PTE_A | (access_type == MMU_DATA_STORE ? PTE_D : 0); in get_physical_address()
1214 if (updated_pte != pte && !is_debug) { in get_physical_address()
1238 *pte_pa = pte = updated_pte; in get_physical_address()
1242 old_pte = qatomic_cmpxchg((uint32_t *)pte_pa, pte, updated_pte); in get_physical_address()
1244 old_pte = qatomic_cmpxchg(pte_pa, pte, updated_pte); in get_physical_address()
1249 pte = updated_pte; in get_physical_address()