[Lldb-commits] [lldb] Bug fix in FindModuleUUID (PR #137075)
via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 23 15:30:43 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: None (GeorgeHuyubo)
<details>
<summary>Changes</summary>
In some core file, we are seeing that it's not always the case that the ELF header would exist in the first region in NT_FILES section. Therefore the FindModuleUUID is not able to find the module UUID by just returning the first entry with path matching.
This fix change the behavior to continue search the NT_FILE entries until finding a valid UUID with path matching.
---
Full diff: https://github.com/llvm/llvm-project/pull/137075.diff
1 Files Affected:
- (modified) lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp (+1-1)
``````````diff
diff --git a/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp b/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
index 5f85f99ce7bdd..6635b15b669f1 100644
--- a/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
+++ b/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
@@ -289,7 +289,7 @@ void ProcessElfCore::UpdateBuildIdForNTFileEntries() {
UUID ProcessElfCore::FindModuleUUID(const llvm::StringRef path) {
// Returns the gnu uuid from matched NT_FILE entry
for (NT_FILE_Entry &entry : m_nt_file_entries)
- if (path == entry.path)
+ if (path == entry.path && entry.uuid.IsValid())
return entry.uuid;
return UUID();
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/137075
More information about the lldb-commits
mailing list