[Lldb-commits] [lldb] [lldb][docs] document an analogue for `info proc mappings` (PR #153559)
via lldb-commits
lldb-commits at lists.llvm.org
Thu Aug 14 01:50:43 PDT 2025
https://github.com/DCNick3 created https://github.com/llvm/llvm-project/pull/153559
None
>From 8e15649b5979d4f9636eaf86db2bbc5539860bca Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=AD=90=EF=B8=8FNINIKA=E2=AD=90=EF=B8=8F?=
<DCNick3 at users.noreply.github.com>
Date: Thu, 14 Aug 2025 11:49:34 +0300
Subject: [PATCH] [lldb][docs] document an analogue for `info proc mappings`
---
lldb/docs/use/map.rst | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/lldb/docs/use/map.rst b/lldb/docs/use/map.rst
index ea166bf8f1e9a..89547489e02aa 100644
--- a/lldb/docs/use/map.rst
+++ b/lldb/docs/use/map.rst
@@ -1126,6 +1126,20 @@ Save binary memory data starting at ``0x1000`` and ending at ``0x2000`` to a fil
(lldb) memory read --outfile /tmp/mem.bin --binary 0x1000 0x2000
(lldb) me r -o /tmp/mem.bin -b 0x1000 0x2000
+
+Print information about mapped memory regions
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+.. code-block:: shell
+
+ (gdb) info proc mappings
+
+.. code-block:: shell
+
+ (lldb) memory region --all
+ (lldb) me reg --all
+
+
Get information about a specific heap allocation (macOS only)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
More information about the lldb-commits
mailing list