[llvm] Add Minidump related release notes (PR #122759)
Jacob Lalonde via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 13 11:16:56 PST 2025
https://github.com/Jlalond updated https://github.com/llvm/llvm-project/pull/122759
>From 2f11895694724cb3a3060f2fb03dcf6119a244cf Mon Sep 17 00:00:00 2001
From: Jacob Lalonde <jalalonde at fb.com>
Date: Mon, 13 Jan 2025 10:07:51 -0800
Subject: [PATCH 1/2] Write release notes on Minidump changes since 19, and the
new SBSaveCore API
---
llvm/docs/ReleaseNotes.md | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/llvm/docs/ReleaseNotes.md b/llvm/docs/ReleaseNotes.md
index a9d9e5fc7ace4a..5d87febdb912c3 100644
--- a/llvm/docs/ReleaseNotes.md
+++ b/llvm/docs/ReleaseNotes.md
@@ -443,6 +443,10 @@ Changes to LLDB
_regexp-display -- Evaluate an expression at every stop (see 'h...
```
+ * Minidumps generated by LLDB now support 64 bit memory, the capture of TLS variables, and capturing multiple signals or exceptions. Additionally to support 64 bit memory, Minidumps are now paged to disk while being written.
+
+ * [New Core File API](https://lldb.llvm.org/python_api/lldb.SBSaveCoreOptions.html) with greater control of data LLDB will capture into Core files.
+
Changes to BOLT
---------------------------------
>From 88b314e06c95446710366d93b19baee0901c95ca Mon Sep 17 00:00:00 2001
From: Jacob Lalonde <jalalonde at fb.com>
Date: Mon, 13 Jan 2025 11:16:41 -0800
Subject: [PATCH 2/2] Reword SBSaveCore, break Minidump into bullets
---
llvm/docs/ReleaseNotes.md | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/llvm/docs/ReleaseNotes.md b/llvm/docs/ReleaseNotes.md
index 5d87febdb912c3..42293c207ca3f0 100644
--- a/llvm/docs/ReleaseNotes.md
+++ b/llvm/docs/ReleaseNotes.md
@@ -443,9 +443,12 @@ Changes to LLDB
_regexp-display -- Evaluate an expression at every stop (see 'h...
```
- * Minidumps generated by LLDB now support 64 bit memory, the capture of TLS variables, and capturing multiple signals or exceptions. Additionally to support 64 bit memory, Minidumps are now paged to disk while being written.
+ * Minidumps generated by LLDB now support:
+ * 64 bit memory (due to 64b support, Minidumps are now paged to disk while being written).
+ * Capturing of TLS variables.
+ * Multiple signals or exceptions, including breakpoints.
- * [New Core File API](https://lldb.llvm.org/python_api/lldb.SBSaveCoreOptions.html) with greater control of data LLDB will capture into Core files.
+ * [New Core File API](https://lldb.llvm.org/python_api/lldb.SBSaveCoreOptions.html). This gives greater control on the data captured into the core file, relative to the existing `process save-core` styles.
Changes to BOLT
---------------------------------
More information about the llvm-commits
mailing list