Home
last modified time | relevance | path

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

/openbmc/qemu/target/i386/
H A Dmonitor.c204 uint64_t pml5e; in tlb_info_la57() local
209 cpu_physical_memory_read(pml5_addr + l0 * 8, &pml5e, 8); in tlb_info_la57()
210 pml5e = le64_to_cpu(pml5e); in tlb_info_la57()
211 if (pml5e & PG_PRESENT_MASK) { in tlb_info_la57()
212 tlb_info_la48(mon, env, l0, pml5e & 0x3fffffffff000ULL); in tlb_info_la57()
457 uint64_t pml5e, pml4e, pdpe, pde, pte; in mem_info_la57() local
464 cpu_physical_memory_read(pml5_addr + l0 * 8, &pml5e, 8); in mem_info_la57()
465 pml5e = le64_to_cpu(pml5e); in mem_info_la57()
467 if (!(pml5e & PG_PRESENT_MASK)) { in mem_info_la57()
473 pml4_addr = pml5e & 0x3fffffffff000ULL; in mem_info_la57()
[all …]
H A Darch_memory_mapping.c249 uint64_t pml5e; in walk_pml5e() local
255 pml5e = address_space_ldq(as, pml5e_addr, MEMTXATTRS_UNSPECIFIED, in walk_pml5e()
257 if (!(pml5e & PG_PRESENT_MASK)) { in walk_pml5e()
263 pml4e_start_addr = (pml5e & PLM4_ADDR_MASK) & a20_mask; in walk_pml5e()
H A Dhelper.c262 uint64_t pml5e_addr, pml5e; in x86_cpu_get_phys_page_attrs_debug() local
275 pml5e = x86_ldq_phys(cs, pml5e_addr); in x86_cpu_get_phys_page_attrs_debug()
276 if (!(pml5e & PG_PRESENT_MASK)) { in x86_cpu_get_phys_page_attrs_debug()
280 pml5e = env->cr[3]; in x86_cpu_get_phys_page_attrs_debug()
283 pml4e_addr = ((pml5e & PG_ADDRESS_MASK) + in x86_cpu_get_phys_page_attrs_debug()