I want to display all memory mappings of the debugged process, including stack and heap, using LLDB.
Currently, I only know of LLDB's image dump sections
, but it only displays memory mappings corresponding to segments/segments of the Mach-O binary, and not dynamic memory mappings (e.g. stack and heap) like GDB's info proc mappings
.
I know I can use vmmap
from another terminal window to obtain this information, but it must be possible to do this from LLDB itself.