Lines Matching refs:ptd
1055 ptd = GetPtDesc(KVToPhysARM(ptep))
1056 iommu = dereference(ptd.iommu)
1076 ptd = GetPtDesc(KVToPhysARM(ptep))
1077 if ptd.pmap == kern.globals.kernel_pmap:
1078 extra_str = "Mapped by kernel task (kernel_pmap: {:#x})".format(ptd.pmap)
1080 task = TaskForPmapHelper(ptd.pmap)
1081 …extra_str = "Mapped by user task (pmap: {:#x}, task: {:s})".format(ptd.pmap, "{:#x}".format(task) …
1199 ptd = kern.GetValueFromAddress(pvh & ~0x3, 'pt_desc_t *')
1200 RunLldbCmdHelper("p/x *(pt_desc_t*)" + hex(ptd))
1205 RunLldbCmdHelper("p/x ((pt_desc_t*)" + hex(ptd) + ")->ptd_info[0]")
1271 ptd = kern.GetValueFromAddress(pvh & ~0x3, 'pt_desc_t *')
1272 return ptd
1278 ptd = GetPtDesc(KVToPhysARM(pte))
1280 refcnt = ptd.ptd_info[pt_index].refcnt
1281 wiredcnt = ptd.ptd_info[pt_index].wiredcnt
1282 print("descriptor: {:#x} (refcnt: {:#x}, wiredcnt: {:#x})".format(ptd, refcnt, wiredcnt))
1289 iommu_desc_name = '{:s}'.format(dereference(dereference(ptd.iommu).desc).name)
1290 if unsigned(dereference(ptd.iommu).name) != 0:
1291 iommu_desc_name += '/{:s}'.format(dereference(ptd.iommu).name)
1293 print("iommu state: {:#x} ({:s})".format(ptd.iommu, iommu_desc_name))
1295 if ptd.pmap == kern.globals.kernel_pmap:
1298 task = TaskForPmapHelper(ptd.pmap)
1300 print("pmap: {:#x} {:s}".format(ptd.pmap, pmap_str))
1309 if ptd.ptd_info[pt_index].refcnt == 0x4000:
1315 …print("maps {}: {:#x}".format("IPA" if stage2 else "VA", int(unsigned(ptd.va[pt_index])) + (pte_pg…
1512 ptd = GetPtDesc(paddr)
1513 if ptd.pmap != pmap: