#include "DynamicLoaderPOSIXDYLD.h"
#include "lldb/Breakpoint/BreakpointLocation.h"
#include "lldb/Core/Module.h"
#include "lldb/Core/ModuleSpec.h"
#include "lldb/Core/PluginManager.h"
#include "lldb/Core/Section.h"
#include "lldb/Symbol/Function.h"
#include "lldb/Symbol/ObjectFile.h"
#include "lldb/Target/MemoryRegionInfo.h"
#include "lldb/Target/Platform.h"
#include "lldb/Target/Target.h"
#include "lldb/Target/Thread.h"
#include "lldb/Target/ThreadPlanRunToAddress.h"
#include "lldb/Utility/LLDBLog.h"
#include "lldb/Utility/Log.h"
#include "lldb/Utility/ProcessInfo.h"
#include <memory>
#include <optional>
usingnamespacelldb;
usingnamespacelldb_private;
LLDB_PLUGIN_DEFINE_ADV(DynamicLoaderPOSIXDYLD, DynamicLoaderPosixDYLD)
void DynamicLoaderPOSIXDYLD::Initialize() { … }
void DynamicLoaderPOSIXDYLD::Terminate() { … }
llvm::StringRef DynamicLoaderPOSIXDYLD::GetPluginDescriptionStatic() { … }
DynamicLoader *DynamicLoaderPOSIXDYLD::CreateInstance(Process *process,
bool force) { … }
DynamicLoaderPOSIXDYLD::DynamicLoaderPOSIXDYLD(Process *process)
: … { … }
DynamicLoaderPOSIXDYLD::~DynamicLoaderPOSIXDYLD() { … }
void DynamicLoaderPOSIXDYLD::DidAttach() { … }
void DynamicLoaderPOSIXDYLD::DidLaunch() { … }
Status DynamicLoaderPOSIXDYLD::CanLoadImage() { … }
void DynamicLoaderPOSIXDYLD::UpdateLoadedSections(ModuleSP module,
addr_t link_map_addr,
addr_t base_addr,
bool base_addr_is_offset) { … }
void DynamicLoaderPOSIXDYLD::UnloadSections(const ModuleSP module) { … }
void DynamicLoaderPOSIXDYLD::ProbeEntry() { … }
bool DynamicLoaderPOSIXDYLD::EntryBreakpointHit(
void *baton, StoppointCallbackContext *context, user_id_t break_id,
user_id_t break_loc_id) { … }
bool DynamicLoaderPOSIXDYLD::SetRendezvousBreakpoint() { … }
bool DynamicLoaderPOSIXDYLD::RendezvousBreakpointHit(
void *baton, StoppointCallbackContext *context, user_id_t break_id,
user_id_t break_loc_id) { … }
void DynamicLoaderPOSIXDYLD::RefreshModules() { … }
ThreadPlanSP
DynamicLoaderPOSIXDYLD::GetStepThroughTrampolinePlan(Thread &thread,
bool stop) { … }
void DynamicLoaderPOSIXDYLD::LoadVDSO() { … }
ModuleSP DynamicLoaderPOSIXDYLD::LoadInterpreterModule() { … }
ModuleSP DynamicLoaderPOSIXDYLD::LoadModuleAtAddress(const FileSpec &file,
addr_t link_map_addr,
addr_t base_addr,
bool base_addr_is_offset) { … }
void DynamicLoaderPOSIXDYLD::LoadAllCurrentModules() { … }
addr_t DynamicLoaderPOSIXDYLD::ComputeLoadOffset() { … }
void DynamicLoaderPOSIXDYLD::EvalSpecialModulesStatus() { … }
addr_t DynamicLoaderPOSIXDYLD::GetEntryPoint() { … }
lldb::addr_t
DynamicLoaderPOSIXDYLD::GetThreadLocalData(const lldb::ModuleSP module_sp,
const lldb::ThreadSP thread,
lldb::addr_t tls_file_addr) { … }
void DynamicLoaderPOSIXDYLD::ResolveExecutableModule(
lldb::ModuleSP &module_sp) { … }
bool DynamicLoaderPOSIXDYLD::AlwaysRelyOnEHUnwindInfo(
lldb_private::SymbolContext &sym_ctx) { … }
bool DynamicLoaderPOSIXDYLD::IsCoreFile() const { … }