Searched refs:ppn (Results 1 - 5 of 5) sorted by relevance

/xnu-2782.1.97/osfmk/i386/
H A Dpmap_internal.h152 fixed pv array for that ppn (off the next pointer). These pve's are accessed
157 calc pve_ptr from the ppn in the pte
158 for (every pv in the list for the ppn) {
175 list by ppn for operations like pmap_page_protect and finding and
180 basically the original structure accessed in an array by ppn, and a ''hashed''
183 a ppn faster. Since a vast majority of pages in the system are not aliased
187 link and the ppn entry needed for matching while running the hash list to find
206 ppnum_t ppn;
215 than the original pv lists that contained all aliases for the specific ppn.
233 ppnum_t ppn; member in struct:pv_hashed_entry
613 ppnum_t ppn; member in struct:__anon949
625 pmap_pagetable_corruption_log(pmap_pv_assertion_t incident, pmap_pagetable_corruption_t suppress_reason, pmap_pagetable_corruption_action_t action, pmap_t pmap, vm_map_offset_t vaddr, pt_entry_t *ptep, ppnum_t ppn, pmap_t pvpmap, vm_map_offset_t pvva) argument
649 ppnum_t ppn = *ppnp; local
756 ppnum_t ppn; local
[all...]
H A Dmachine_routines.c137 ppnum_t ppn; local
146 ppn = pmap_find_phys(kernel_pmap, vaddr_cur);
147 if (ppn != (vm_offset_t)NULL) {
155 assert(pmap_valid_page(ppn));
157 if (IS_MANAGED_PAGE(ppn)) {
158 vm_page_create(ppn,(ppn+1));
165 kprintf("ml_static_mfree: Released 0x%x pages at VA %p, size:0x%llx, last ppn: 0x%x\n", freed_pages, (void *)vaddr, (uint64_t)size, ppn);
H A Dpmap_x86_common.c311 ppnum_t ppn = 0; local
329 ppn = (ppnum_t) i386_btop(pte_to_pa(pde));
330 ppn += (ppnum_t) ptenum(va);
335 ppn = (ppnum_t) i386_btop(pte_to_pa(pte));
342 return ppn;
806 pvh_e->ppn = pn;
/xnu-2782.1.97/osfmk/kdp/ml/i386/
H A Dkdp_x86_common.c428 ppnum_t ppn = pmap_find_phys(pmap, vcur); local
430 if (ppn != 0 && !pmap_valid_page(ppn)) {
432 ppn = 0;
435 if (ppn != 0) {
/xnu-2782.1.97/osfmk/x86_64/
H A Dpmap.c648 ppnum_t ppn; local
732 ppn = pmap_find_phys(kernel_pmap, vaddr);
734 pmap_phys_attributes[ppn] |= PHYS_NOENCRYPT;
767 for (ppn = VM_MIN_KERNEL_PAGE; ppn < i386_btop(avail_start); ppn++) {
770 pv_e = pai_to_pvh(ppn);

Completed in 44 milliseconds