Home
last modified time | relevance | path

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

/f-stack/freebsd/i386/include/
H A Dpmap_pae.h100 #define pde_cmpset(pdep, old, new) atomic_cmpset_64_i586(pdep, old, new) argument
H A Dpmap_nopae.h83 #define pde_cmpset(pdep, old, new) atomic_cmpset_int(pdep, old, new) argument
H A Dpmap.h153 #define pde_store(pdep, pde) pte_store(pdep, pde) argument
/f-stack/freebsd/mips/mips/
H A Dtrap.c1385 pd_entry_t *pdep; in get_mapping_info() local
1389 if (*pdep) in get_mapping_info()
1394 *pdepp = pdep; in get_mapping_info()
1402 pd_entry_t *pdep; in log_illegal_instruction() local
1424 get_mapping_info((vm_offset_t)pc, &pdep, &ptep); in log_illegal_instruction()
1434 (intmax_t)pc, (void *)(intptr_t)*pdep, (uintmax_t)(ptep ? *ptep : 0)); in log_illegal_instruction()
1442 (intmax_t)pc, (void *)(intptr_t)*pdep, (uintmax_t)(ptep ? *ptep : 0)); in log_illegal_instruction()
1450 pd_entry_t *pdep; in log_bad_page_fault() local
1493 get_mapping_info((vm_offset_t)pc, &pdep, &ptep); in log_bad_page_fault()
1505 (intmax_t)pc, (void *)(intptr_t)*pdep, (uintmax_t)(ptep ? *ptep : 0)); in log_bad_page_fault()
[all …]
H A Dpmap.c1199 pd_entry_t *pdep, *pde; in _pmap_allocpte() local
1204 pdep = &pmap->pm_segtab[segindex]; in _pmap_allocpte()
1205 if (*pdep == NULL) { in _pmap_allocpte()
1215 pg = PHYS_TO_VM_PAGE(MIPS_DIRECT_TO_PHYS(*pdep)); in _pmap_allocpte()
1219 pde = (pd_entry_t *)*pdep; in _pmap_allocpte()
/f-stack/freebsd/amd64/include/
H A Dpmap.h326 #define pde_store(pdep, pde) pte_store(pdep, pde) argument
/f-stack/freebsd/amd64/amd64/
H A Dpmap.c3709 pd_entry_t pde, *pdep; in pmap_extract_and_hold() local
3728 pdep = pmap_pdpe_to_pde(pdpep, va); in pmap_extract_and_hold()
3729 if (pdep == NULL || ((pde = *pdep) & PG_V) == 0) in pmap_extract_and_hold()
3738 pte = *pmap_pde_to_pte(pdep, va); in pmap_extract_and_hold()
9482 pd_entry_t *pdep; in pmap_mincore() local
9506 pdep = pmap_pde(pmap, addr); in pmap_mincore()
9507 if (pdep != NULL && (*pdep & PG_V) != 0) { in pmap_mincore()
9508 if ((*pdep & PG_PS) != 0) { in pmap_mincore()
9509 pte = *pdep; in pmap_mincore()
9515 pte = *pmap_pde_to_pte(pdep, addr); in pmap_mincore()
/f-stack/freebsd/arm64/arm64/
H A Dpmap.c6741 pd_entry_t *pdep; in pmap_stage2_fault() local
6756 pdep = pmap_pde(pmap, far, &lvl); in pmap_stage2_fault()
6757 if (pdep == NULL || lvl != (dfsc - ISS_DATA_DFSC_TF_L1)) { in pmap_stage2_fault()
6764 ptep = pmap_l0_to_l1(pdep, far); in pmap_stage2_fault()
6767 ptep = pmap_l1_to_l2(pdep, far); in pmap_stage2_fault()
6770 ptep = pmap_l2_to_l3(pdep, far); in pmap_stage2_fault()