Home
last modified time | relevance | path

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

/xnu-8019.80.24/tools/lldbmacros/
H A Dpmap.py1050 ptd = GetPtDesc(KVToPhysARM(ptep))
1051 iommu = dereference(ptd.iommu)
1071 ptd = GetPtDesc(KVToPhysARM(ptep))
1072 if ptd.pmap == kern.globals.kernel_pmap:
1073 extra_str = "Mapped by kernel task (kernel_pmap: {:#x})".format(ptd.pmap)
1075 task = TaskForPmapHelper(ptd.pmap)
1076 …extra_str = "Mapped by user task (pmap: {:#x}, task: {:s})".format(ptd.pmap, "{:#x}".format(task) …
1194 ptd = kern.GetValueFromAddress(pvh & ~0x3, 'pt_desc_t *')
1195 RunLldbCmdHelper("p/x *(pt_desc_t*)" + hex(ptd))
1200 RunLldbCmdHelper("p/x ((pt_desc_t*)" + hex(ptd) + ")->ptd_info[0]")
[all …]
/xnu-8019.80.24/osfmk/arm/pmap/
H A Dpmap_data.h967 ptd_get_index(__unused const pt_desc_t *ptd, __unused const tt_entry_t *ttep) in ptd_get_index() argument
972 assert(ptd != NULL); in ptd_get_index()
974 const uint64_t pmap_page_shift = pt_attr_leaf_shift(pmap_get_pt_attr(ptd->pmap)); in ptd_get_index()
1008 ptd_get_info(pt_desc_t *ptd, const tt_entry_t *ttep) in ptd_get_info() argument
1010 assert((ptd != NULL) && (ptd->ptd_info[0].refcnt < PT_DESC_IOMMU_GRANTED_REFCOUNT)); in ptd_get_info()
1012 return &ptd->ptd_info[ptd_get_index(ptd, ttep)]; in ptd_get_info()