Lines Matching refs:pte1
209 target_ulong pte0, pte1; in ppc_hash32_pteg_search() local
220 pte1 = ppc_hash32_load_hpte1(cpu, pte_offset); in ppc_hash32_pteg_search()
226 pte->pte1 = pte1; in ppc_hash32_pteg_search()
236 static void ppc_hash32_set_r(PowerPCCPU *cpu, hwaddr pte_offset, uint32_t pte1) in ppc_hash32_set_r() argument
242 stb_phys(CPU(cpu)->as, base + offset, ((pte1 >> 8) & 0xff) | 0x01); in ppc_hash32_set_r()
245 static void ppc_hash32_set_c(PowerPCCPU *cpu, hwaddr pte_offset, uint64_t pte1) in ppc_hash32_set_c() argument
251 stb_phys(CPU(cpu)->as, base + offset, (pte1 & 0xff) | 0x80); in ppc_hash32_set_c()
387 prot = ppc_hash32_prot(key, pte.pte1 & HPTE32_R_PP, sr & SR32_NX); in ppc_hash32_xlate()
414 if (!(pte.pte1 & HPTE32_R_R)) { in ppc_hash32_xlate()
415 ppc_hash32_set_r(cpu, pte_offset, pte.pte1); in ppc_hash32_xlate()
417 if (!(pte.pte1 & HPTE32_R_C)) { in ppc_hash32_xlate()
419 ppc_hash32_set_c(cpu, pte_offset, pte.pte1); in ppc_hash32_xlate()
431 *raddrp = pte.pte1 & HPTE32_R_RPN; in ppc_hash32_xlate()