Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[LLDB] Expose checking if the symbol file exists/is loaded via SBModule #134163

Merged
merged 1 commit into from
Apr 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lldb/include/lldb/API/SBModule.h
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,9 @@ class LLDB_API SBModule {
lldb::SBAddress GetObjectFileHeaderAddress() const;
lldb::SBAddress GetObjectFileEntryPointAddress() const;

/// Get if the symbol file for this module is loaded.
bool IsDebugInfoLoaded() const;

/// Get the number of global modules.
static uint32_t GetNumberAllocatedModules();

Expand Down
12 changes: 12 additions & 0 deletions lldb/source/API/SBModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -659,6 +659,18 @@ lldb::SBAddress SBModule::GetObjectFileEntryPointAddress() const {
return sb_addr;
}

bool SBModule::IsDebugInfoLoaded() const {
LLDB_INSTRUMENT_VA(this);

ModuleSP module_sp(GetSP());
if (module_sp) {
SymbolFile *sym_file = module_sp->GetSymbolFile(/*create=*/false);
return sym_file && sym_file->GetLoadDebugInfoEnabled();
}

return false;
}

uint32_t SBModule::GetNumberAllocatedModules() {
LLDB_INSTRUMENT();

Expand Down