Virtual Memory Walkers
- anon
-
Given the address of an
anon_mapstructure as a starting point, iterate over the set of related anon structures. The anon map implementation is defined in<vm/anon.h>. - memlist
-
Iterate over the spans of the specified
memliststructure. This walker can be used in conjunction with the::memlistdcmd to display each span. - page
-
Iterate over all system
pagestructures. If an explicit address is specified for the walk, this is taken to be the address of a vnode and the walker iterates over only those pages associated with the vnode. - seg
-
Given the address of an
as_tstructure as a starting point, iterate over the set of address space segments (segstructures) associated with the specified address space. Thesegstructure is defined in<vm/seg.h>. - swapinfo
-
Iterate over the list of active
swapinfostructures. This walker may be used in conjunction with the::swapinfodcmd.