[Lldb-commits] [lldb] [llvm] [Obj2Yaml] Add support for minidump generation with 64b memory ranges. (PR #101272)

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Mon Aug 5 02:05:40 PDT 2024


================
@@ -136,6 +136,22 @@ static size_t layout(BlobAllocator &File, MinidumpYAML::ExceptionStream &S) {
   return DataEnd;
 }
 
+static size_t layout(BlobAllocator &File, MinidumpYAML::Memory64ListStream &S) {
+  size_t BaseRVA = File.tell() + sizeof(minidump::Memory64ListHeader);
----------------
labath wrote:

Changing this to 64-bit makes sense to me, but I'd rather do it wholesale and as a separate patch.

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


More information about the lldb-commits mailing list