[Lldb-commits] [lldb] [LLDB][Minidump] Extend the minidump x86_64 registers to include fs_base and gs_base (PR #106767)

Jacob Lalonde via lldb-commits lldb-commits at lists.llvm.org
Fri Aug 30 11:34:13 PDT 2024


================
@@ -67,6 +67,18 @@ def verify_core_file(
             self.assertIn(thread_id, stacks_to_registers_map)
             register_val_list = stacks_to_registers_map[thread_id]
             frame_register_list = frame.GetRegisters()
+            # explicitly verify we collected fs and gs base for x86_64
----------------
Jlalond wrote:

This test has a x86_64 restriction. This is the verification method called by several test, but all are x86_64.

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


More information about the lldb-commits mailing list