Home
last modified time | relevance | path

Searched refs:ptd (Results 1 – 2 of 2) sorted by relevance

/xnu-10002.1.13/tools/lldbmacros/ !
H A Dpmap.py828 ptd = GetPtDesc(KVToPhysARM(ptep))
829 iommu = dereference(ptd.iommu)
847 ptd = GetPtDesc(KVToPhysARM(ptep))
848 extra_str = 'Mapped by IOMMU {:x}'.format(ptd.iommu)
852 ptd = GetPtDesc(KVToPhysARM(ptep))
853 if ptd.pmap == kern.globals.kernel_pmap:
854 extra_str = "Mapped by kernel task (kernel_pmap: {:#x})".format(ptd.pmap)
856 task = TaskForPmapHelper(ptd.pmap)
857 …extra_str = "Mapped by user task (pmap: {:#x}, task: {:s})".format(ptd.pmap, "{:#x}".format(task) …
973 ptd = kern.GetValueFromAddress(pvh & ~0x3, 'pt_desc_t *')
[all …]
/xnu-10002.1.13/osfmk/arm/pmap/ !
H A Dpmap_data.h1005 ptd_get_index(__unused const pt_desc_t *ptd, __unused const tt_entry_t *ttep) in ptd_get_index() argument
1010 assert(ptd != NULL); in ptd_get_index()
1012 const uint64_t pmap_page_shift = pt_attr_leaf_shift(pmap_get_pt_attr(ptd->pmap)); in ptd_get_index()
1046 ptd_get_info(pt_desc_t *ptd, const tt_entry_t *ttep) in ptd_get_info() argument
1048 assert((ptd != NULL) && (ptd->ptd_info[0].refcnt < PT_DESC_IOMMU_GRANTED_REFCOUNT)); in ptd_get_info()
1050 return &ptd->ptd_info[ptd_get_index(ptd, ttep)]; in ptd_get_info()