[Lldb-commits] [lldb] [lldb] Change GetStartSymbol to GetStartAddress in DynamicLoader (PR #99909)
Med Ismail Bennani via lldb-commits
lldb-commits at lists.llvm.org
Mon Jul 22 11:00:12 PDT 2024
https://github.com/medismailben created https://github.com/llvm/llvm-project/pull/99909
On linux, the start address doesn't necessarily have a symbol attached to it.
This is why this patch replaces `DynamicLoader::GetStartSymbol` with `DynamicLoader::GetStartAddress` instead.
>From f74357959ab8b8a7bdc68f358c802a06e62ab134 Mon Sep 17 00:00:00 2001
From: Med Ismail Bennani <ismail at bennani.ma>
Date: Mon, 22 Jul 2024 10:50:30 -0700
Subject: [PATCH] [lldb] Change GetStartSymbol to GetStartAddress in
DynamicLoader
On linux, the start address doesn't necessarily have a symbol attached
to it.
This is why this patch replaces `DynamicLoader::GetStartSymbol` with
`DynamicLoader::GetStartAddress` instead.
Signed-off-by: Med Ismail Bennani <ismail at bennani.ma>
---
lldb/include/lldb/Target/DynamicLoader.h | 9 +++++----
.../DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp | 4 ++--
.../DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.h | 4 ++--
3 files changed, 9 insertions(+), 8 deletions(-)
diff --git a/lldb/include/lldb/Target/DynamicLoader.h b/lldb/include/lldb/Target/DynamicLoader.h
index 15384245194b0..0629e2faae7e9 100644
--- a/lldb/include/lldb/Target/DynamicLoader.h
+++ b/lldb/include/lldb/Target/DynamicLoader.h
@@ -9,8 +9,8 @@
#ifndef LLDB_TARGET_DYNAMICLOADER_H
#define LLDB_TARGET_DYNAMICLOADER_H
+#include "lldb/Core/Address.h"
#include "lldb/Core/PluginInterface.h"
-#include "lldb/Symbol/Symbol.h"
#include "lldb/Utility/FileSpec.h"
#include "lldb/Utility/Status.h"
#include "lldb/Utility/UUID.h"
@@ -25,6 +25,7 @@ namespace lldb_private {
class ModuleList;
class Process;
class SectionList;
+class Symbol;
class SymbolContext;
class SymbolContextList;
class Thread;
@@ -329,10 +330,10 @@ class DynamicLoader : public PluginInterface {
/// safe to call certain APIs or SPIs.
virtual bool IsFullyInitialized() { return true; }
- /// Return the `start` function \b symbol in the dynamic loader module.
- /// This is the symbol the process will begin executing with
+ /// Return the `start` \b address in the dynamic loader module.
+ /// This is the address the process will begin executing with
/// `process launch --stop-at-entry`.
- virtual std::optional<lldb_private::Symbol> GetStartSymbol() {
+ virtual std::optional<lldb_private::Address> GetStartAddress() {
return std::nullopt;
}
diff --git a/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp b/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp
index 5c6331735bde8..3863b6b3520db 100644
--- a/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp
+++ b/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp
@@ -609,7 +609,7 @@ void DynamicLoaderDarwin::UpdateDYLDImageInfoFromNewImageInfo(
}
}
-std::optional<lldb_private::Symbol> DynamicLoaderDarwin::GetStartSymbol() {
+std::optional<lldb_private::Address> DynamicLoaderDarwin::GetStartAddress() {
Log *log = GetLog(LLDBLog::DynamicLoader);
auto log_err = [log](llvm::StringLiteral err_msg) -> std::nullopt_t {
@@ -626,7 +626,7 @@ std::optional<lldb_private::Symbol> DynamicLoaderDarwin::GetStartSymbol() {
if (!symbol)
return log_err("Cannot find `start` symbol in DYLD module.");
- return *symbol;
+ return symbol->GetAddress();
}
void DynamicLoaderDarwin::SetDYLDModule(lldb::ModuleSP &dyld_module_sp) {
diff --git a/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.h b/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.h
index 4ac55fdf6f3af..3613c4c29b178 100644
--- a/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.h
+++ b/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.h
@@ -56,6 +56,8 @@ class DynamicLoaderDarwin : public lldb_private::DynamicLoader {
virtual bool NeedToDoInitialImageFetch() = 0;
+ std::optional<lldb_private::Address> GetStartAddress() override;
+
protected:
void PrivateInitialize(lldb_private::Process *process);
@@ -67,8 +69,6 @@ class DynamicLoaderDarwin : public lldb_private::DynamicLoader {
// Clear method for classes derived from this one
virtual void DoClear() = 0;
- std::optional<lldb_private::Symbol> GetStartSymbol() override;
-
void SetDYLDModule(lldb::ModuleSP &dyld_module_sp);
lldb::ModuleSP GetDYLDModule();
More information about the lldb-commits
mailing list