[Lldb-commits] [lldb] lldb-dap: Stop using replicated variable ids (PR #124232)

2025-12-07 Thread Anthony Eid via lldb-commits
https://github.com/Anthony-Eid updated https://github.com/llvm/llvm-project/pull/124232 >From 30658e994b18b7c0db114a297036421c8de2dea3 Mon Sep 17 00:00:00 2001 From: Anthony Date: Wed, 27 Aug 2025 13:04:26 -0400 Subject: [PATCH 01/18] Fix variable request from reusing variable_ids --- .../lld

[Lldb-commits] [lldb] lldb-dap: Stop using replicated variable ids (PR #124232)

2025-12-07 Thread Anthony Eid via lldb-commits
https://github.com/Anthony-Eid updated https://github.com/llvm/llvm-project/pull/124232 >From 30658e994b18b7c0db114a297036421c8de2dea3 Mon Sep 17 00:00:00 2001 From: Anthony Date: Wed, 27 Aug 2025 13:04:26 -0400 Subject: [PATCH 01/19] Fix variable request from reusing variable_ids --- .../lld

[Lldb-commits] [lldb] lldb-dap: Stop using replicated variable ids (PR #124232)

2025-12-07 Thread Anthony Eid via lldb-commits
Anthony-Eid wrote: @medismailben Sorry for the delay, this PR should be ready for review again! https://github.com/llvm/llvm-project/pull/124232 ___ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/

[Lldb-commits] [lldb] lldb-dap: Stop using replicated variable ids (PR #124232)

2025-12-07 Thread Anthony Eid via lldb-commits
https://github.com/Anthony-Eid updated https://github.com/llvm/llvm-project/pull/124232 >From 30658e994b18b7c0db114a297036421c8de2dea3 Mon Sep 17 00:00:00 2001 From: Anthony Date: Wed, 27 Aug 2025 13:04:26 -0400 Subject: [PATCH 01/18] Fix variable request from reusing variable_ids --- .../lld

[Lldb-commits] [lldb] lldb-dap: Stop using replicated variable ids (PR #124232)

2025-12-07 Thread Anthony Eid via lldb-commits
@@ -62,7 +97,11 @@ struct Variables { /// These are the variables evaluated from debug console REPL. llvm::DenseMap m_referencedpermanent_variables; - int64_t m_next_temporary_var_ref{VARREF_FIRST_VAR_IDX}; + /// Key = frame_id + /// Value = (locals, globals Registers)

[Lldb-commits] [lldb] lldb-dap: Stop using replicated variable ids (PR #124232)

2025-12-07 Thread Anthony Eid via lldb-commits
@@ -62,7 +97,11 @@ struct Variables { /// These are the variables evaluated from debug console REPL. llvm::DenseMap m_referencedpermanent_variables; - int64_t m_next_temporary_var_ref{VARREF_FIRST_VAR_IDX}; + /// Key = frame_id + /// Value = (locals, globals Registers)

[Lldb-commits] [lldb] lldb-dap: Stop using replicated variable ids (PR #124232)

2025-12-07 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben updated https://github.com/llvm/llvm-project/pull/124232 >From 30658e994b18b7c0db114a297036421c8de2dea3 Mon Sep 17 00:00:00 2001 From: Anthony Date: Wed, 27 Aug 2025 13:04:26 -0400 Subject: [PATCH 01/19] Fix variable request from reusing variable_ids --- .../ll

[Lldb-commits] [lldb] lldb-dap: Stop using replicated variable ids (PR #124232)

2025-12-07 Thread Anthony Eid via lldb-commits
https://github.com/Anthony-Eid updated https://github.com/llvm/llvm-project/pull/124232 >From 30658e994b18b7c0db114a297036421c8de2dea3 Mon Sep 17 00:00:00 2001 From: Anthony Date: Wed, 27 Aug 2025 13:04:26 -0400 Subject: [PATCH 01/20] Fix variable request from reusing variable_ids --- .../lld