Home
last modified time | relevance | path

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

/freebsd/lib/libkvm/
H A Dkvm_minidump_powerpc64_hpt.c309 pte_get(kvm_t *kd, u_long ptex) in pte_get() argument
313 p = _kvm_pmap_get(kd, ptex, sizeof(pte)); in pte_get()
324 uint64_t pteg, ptex; in pte_search() local
378 for (ptex = pteg; ptex < pteg + 8; ptex++) { in pte_search()
379 pte = pte_get(kd, ptex); in pte_search()
407 __func__, (uintmax_t)ptex, (uintmax_t)pte.pte_hi, in pte_search()
413 if (ptex == pteg + 8) { in pte_search()
561 get_ea(kvm_t *kd, ppc64_pt_entry_t *pte, u_long ptex) in get_ea() argument
594 hash = (ptex & ~7) >> 3; in get_ea()
608 u_long ptex, nptes; in ppc64mmu_hpt_walk_pages() local
[all …]
/freebsd/sys/powerpc/pseries/
H A Dmmu_phyp.c559 u_long ptex, ptex_end; in mphyp_dump_pmap() local
564 ptex = dctx->ptex; in mphyp_dump_pmap()
565 ptex_end = ptex + dctx->blksz / sizeof(struct lpte); in mphyp_dump_pmap()
567 *nbytes = (ptex_end - ptex) * sizeof(struct lpte); in mphyp_dump_pmap()
572 for (; ptex < ptex_end; ptex++) { in mphyp_dump_pmap()
573 phyp_pft_hcall(H_READ, 0, ptex, 0, 0, in mphyp_dump_pmap()
578 dctx->ptex = ptex; in mphyp_dump_pmap()
/freebsd/sys/powerpc/aim/
H A Dmoea64_native.c891 u_long ptex, ptex_end; in moea64_dump_pmap_native() local
894 ptex = dctx->ptex; in moea64_dump_pmap_native()
895 ptex_end = ptex + dctx->blksz / sizeof(struct lpte); in moea64_dump_pmap_native()
897 *nbytes = (ptex_end - ptex) * sizeof(struct lpte); in moea64_dump_pmap_native()
902 dctx->ptex = ptex_end; in moea64_dump_pmap_native()
903 return (__DEVOLATILE(struct lpte *, moea64_pteg_table) + ptex); in moea64_dump_pmap_native()
H A Dmmu_oea64.h37 u_long ptex; member
H A Dmmu_oea64.c3384 dump_ctx.ptex = 0; in moea64_dump_pmap_init()