[Lldb-commits] [lldb] [LLDB][SBSaveCore] Add selectable memory regions to SBSaveCore (PR #105442)

Jacob Lalonde via lldb-commits lldb-commits at lists.llvm.org
Thu Aug 22 14:57:16 PDT 2024


================
@@ -101,6 +103,18 @@ bool SaveCoreOptions::ShouldThreadBeSaved(lldb::tid_t tid) const {
   return m_threads_to_save.count(tid) > 0;
 }
 
+bool SaveCoreOptions::HasSpecifiedThreads() const {
+  return !m_threads_to_save.empty();
+}
+
+void SaveCoreOptions::AddMemoryRegionToSave(const lldb_private::MemoryRegionInfo &region) {
+  m_regions_to_save.Insert(region.GetRange(), /*combine=*/true);
----------------
Jlalond wrote:

Insert inserts into a sorted order. I think for the SaveCore frontend we shouldn't worry about permissions and they should instead be split in the process layer.

https://github.com/llvm/llvm-project/pull/105442


More information about the lldb-commits mailing list