[Lldb-commits] [lldb] [lldb] Fix block address resolution for functions in multiple sections (PR #137955)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Thu May 1 03:15:57 PDT 2025


================
@@ -283,39 +283,42 @@ uint32_t Block::GetRangeIndexContainingAddress(const Address &addr) {
   return m_ranges.FindEntryIndexThatContains(file_addr - func_file_addr);
 }
 
+static AddressRange ToAddressRange(const Address &func_addr,
+                                   const Block::Range &range) {
+  assert(func_addr.GetModule());
+  return AddressRange(func_addr.GetFileAddress() + range.base, range.size,
----------------
DavidSpickett wrote:

what exactly is `func_addr.GetFileAddress()` going to return? The entry point of the function, as an offset to the address of the file it's contained in, or the lowest address contained within the function?

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


More information about the lldb-commits mailing list