LLDB mainline
Public Member Functions | Public Attributes | List of all members
DYLDRendezvous::SOEntry Struct Reference

Structure representing the shared objects currently loaded into the inferior process. More...

#include <DYLDRendezvous.h>

Public Member Functions

 SOEntry ()
 
bool operator== (const SOEntry &entry)
 
void clear ()
 

Public Attributes

lldb::addr_t link_addr
 Address of this link_map.
 
lldb::addr_t base_addr
 Base address of the loaded object.
 
lldb::addr_t path_addr
 String naming the shared object.
 
lldb::addr_t dyn_addr
 Dynamic section of shared object.
 
lldb::addr_t next
 Address of next so_entry.
 
lldb::addr_t prev
 Address of previous so_entry.
 
lldb_private::FileSpec file_spec
 File spec of shared object.
 

Detailed Description

Structure representing the shared objects currently loaded into the inferior process.

This object is a rough analogue to the struct link_map object which actually lives in the inferiors memory.

Definition at line 219 of file DYLDRendezvous.h.

Constructor & Destructor Documentation

◆ SOEntry()

DYLDRendezvous::SOEntry::SOEntry ( )
inline

Definition at line 228 of file DYLDRendezvous.h.

References clear().

Member Function Documentation

◆ clear()

void DYLDRendezvous::SOEntry::clear ( )
inline

◆ operator==()

bool DYLDRendezvous::SOEntry::operator== ( const SOEntry entry)
inline

Definition at line 230 of file DYLDRendezvous.h.

References file_spec.

Member Data Documentation

◆ base_addr

lldb::addr_t DYLDRendezvous::SOEntry::base_addr

◆ dyn_addr

lldb::addr_t DYLDRendezvous::SOEntry::dyn_addr

◆ file_spec

lldb_private::FileSpec DYLDRendezvous::SOEntry::file_spec

◆ link_addr

lldb::addr_t DYLDRendezvous::SOEntry::link_addr

Address of this link_map.

Definition at line 220 of file DYLDRendezvous.h.

Referenced by clear(), DYLDRendezvous::FillSOEntryFromModuleInfo(), and DYLDRendezvous::ReadSOEntryFromMemory().

◆ next

lldb::addr_t DYLDRendezvous::SOEntry::next

◆ path_addr

lldb::addr_t DYLDRendezvous::SOEntry::path_addr

String naming the shared object.

Definition at line 222 of file DYLDRendezvous.h.

Referenced by clear(), DYLDRendezvous::FillSOEntryFromModuleInfo(), and DYLDRendezvous::ReadSOEntryFromMemory().

◆ prev

lldb::addr_t DYLDRendezvous::SOEntry::prev

Address of previous so_entry.

Definition at line 225 of file DYLDRendezvous.h.

Referenced by clear(), DYLDRendezvous::FillSOEntryFromModuleInfo(), and DYLDRendezvous::ReadSOEntryFromMemory().


The documentation for this struct was generated from the following file: