65 : m_opaque_wp(process_sp) {
96const char *SBProcess::GetShortPluginName() {
118 return this->
operator bool();
120SBProcess::operator bool()
const {
123 ProcessSP process_sp(m_opaque_wp.lock());
124 return ((
bool)process_sp && process_sp->IsValid());
128 const char *stdin_path,
const char *stdout_path,
129 const char *stderr_path,
130 const char *working_directory,
131 uint32_t launch_flags,
bool stop_at_entry,
134 working_directory, launch_flags, stop_at_entry,
error);
138 std::lock_guard<std::recursive_mutex> guard(
139 process_sp->GetTarget().GetAPIMutex());
142 launch_flags |= eLaunchFlagStopAtEntry;
145 FileSpec(working_directory), launch_flags);
146 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer();
153 error.SetError(process_sp->Launch(launch_info));
155 error.SetErrorString(
"must be in eStateConnected to call RemoteLaunch");
158 error.SetErrorString(
"unable to attach pid");
161 return error.Success();
170 std::lock_guard<std::recursive_mutex> guard(
171 process_sp->GetTarget().GetAPIMutex());
175 error.SetError(process_sp->Attach(attach_info));
177 error.SetErrorString(
178 "must be in eStateConnected to call RemoteAttachToProcessWithID");
181 error.SetErrorString(
"unable to attach pid");
184 return error.Success();
190 uint32_t num_threads = 0;
195 const bool can_update = stop_locker.
TryLock(&process_sp->GetRunLock());
196 std::lock_guard<std::recursive_mutex> guard(
197 process_sp->GetTarget().GetAPIMutex());
198 num_threads = process_sp->GetThreadList().GetSize(can_update);
211 std::lock_guard<std::recursive_mutex> guard(
212 process_sp->GetTarget().GetAPIMutex());
213 thread_sp = process_sp->GetThreadList().GetSelectedThread();
228 std::lock_guard<std::recursive_mutex> guard(
229 process_sp->GetTarget().GetAPIMutex());
230 thread_sp = process_sp->CreateOSPluginThread(tid, context);
244 target_sp = process_sp->GetTarget().shared_from_this();
245 sb_target.
SetSP(target_sp);
258 ret_val = process_sp->PutSTDIN(src, src_len,
error);
267 size_t bytes_read = 0;
271 bytes_read = process_sp->GetSTDOUT(dst, dst_len,
error);
280 size_t bytes_read = 0;
284 bytes_read = process_sp->GetSTDERR(dst, dst_len,
error);
293 size_t bytes_read = 0;
297 bytes_read = process_sp->GetAsyncProfileData(dst, dst_len,
error);
311 FileSP outfile = std::make_shared<NativeFile>(out,
false);
319 if (!out || !out->IsValid())
326 stream.
Printf(
"Process %" PRIu64
" %s\n", process_sp->GetID(),
339 ::snprintf(message,
sizeof(message),
"Process %" PRIu64
" %s\n",
351 std::lock_guard<std::recursive_mutex> guard(
352 process_sp->GetTarget().GetAPIMutex());
353 return process_sp->GetThreadList().SetSelectedThreadByID(
362 bool ret_val =
false;
365 std::lock_guard<std::recursive_mutex> guard(
366 process_sp->GetTarget().GetAPIMutex());
367 ret_val = process_sp->GetThreadList().SetSelectedThreadByID(tid);
376 bool ret_val =
false;
379 std::lock_guard<std::recursive_mutex> guard(
380 process_sp->GetTarget().GetAPIMutex());
381 ret_val = process_sp->GetThreadList().SetSelectedThreadByIndexID(index_id);
395 const bool can_update = stop_locker.
TryLock(&process_sp->GetRunLock());
396 std::lock_guard<std::recursive_mutex> guard(
397 process_sp->GetTarget().GetAPIMutex());
398 thread_sp = process_sp->GetThreadList().GetThreadAtIndex(index, can_update);
408 uint32_t num_queues = 0;
412 if (stop_locker.
TryLock(&process_sp->GetRunLock())) {
413 std::lock_guard<std::recursive_mutex> guard(
414 process_sp->GetTarget().GetAPIMutex());
415 num_queues = process_sp->GetQueueList().GetSize();
430 if (stop_locker.
TryLock(&process_sp->GetRunLock())) {
431 std::lock_guard<std::recursive_mutex> guard(
432 process_sp->GetTarget().GetAPIMutex());
433 queue_sp = process_sp->GetQueueList().GetQueueAtIndex(index);
446 std::lock_guard<std::recursive_mutex> guard(
447 process_sp->GetTarget().GetAPIMutex());
448 if (include_expression_stops)
449 return process_sp->GetStopID();
451 return process_sp->GetLastNaturalStopID();
463 std::lock_guard<std::recursive_mutex> guard(
464 process_sp->GetTarget().GetAPIMutex());
465 event_sp = process_sp->GetStopEventForStopID(stop_id);
466 sb_event.
reset(event_sp);
476 std::lock_guard<std::recursive_mutex> guard(
477 process_sp->GetTarget().GetAPIMutex());
478 process_sp->ForceScriptedState(new_state);
488 std::lock_guard<std::recursive_mutex> guard(
489 process_sp->GetTarget().GetAPIMutex());
490 ret_val = process_sp->GetState();
502 std::lock_guard<std::recursive_mutex> guard(
503 process_sp->GetTarget().GetAPIMutex());
504 exit_status = process_sp->GetExitStatus();
517 std::lock_guard<std::recursive_mutex> guard(
518 process_sp->GetTarget().GetAPIMutex());
528 ret_val = process_sp->GetID();
536 uint32_t ret_val = 0;
539 ret_val = process_sp->GetUniqueID();
549 byteOrder = process_sp->GetTarget().GetArchitecture().GetByteOrder();
560 size = process_sp->GetTarget().GetArchitecture().GetAddressByteSize();
572 std::lock_guard<std::recursive_mutex> guard(
573 process_sp->GetTarget().GetAPIMutex());
575 if (process_sp->GetTarget().GetDebugger().GetAsyncExecution())
576 sb_error.
ref() = process_sp->Resume();
578 sb_error.
ref() = process_sp->ResumeSynchronous(
nullptr);
591 std::lock_guard<std::recursive_mutex> guard(
592 process_sp->GetTarget().GetAPIMutex());
593 sb_error.
SetError(process_sp->Destroy(
false));
606 std::lock_guard<std::recursive_mutex> guard(
607 process_sp->GetTarget().GetAPIMutex());
608 sb_error.
SetError(process_sp->Halt());
621 std::lock_guard<std::recursive_mutex> guard(
622 process_sp->GetTarget().GetAPIMutex());
623 sb_error.
SetError(process_sp->Destroy(
true));
634 bool keep_stopped =
false;
635 return Detach(keep_stopped);
644 std::lock_guard<std::recursive_mutex> guard(
645 process_sp->GetTarget().GetAPIMutex());
646 sb_error.
SetError(process_sp->Detach(keep_stopped));
659 std::lock_guard<std::recursive_mutex> guard(
660 process_sp->GetTarget().GetAPIMutex());
661 sb_error.
SetError(process_sp->Signal(signo));
671 if (
auto process_sp =
GetSP())
682 process_sp->SendAsyncInterrupt();
694 const bool can_update = stop_locker.
TryLock(&process_sp->GetRunLock());
695 std::lock_guard<std::recursive_mutex> guard(
696 process_sp->GetTarget().GetAPIMutex());
697 thread_sp = process_sp->GetThreadList().FindThreadByID(tid, can_update);
712 const bool can_update = stop_locker.
TryLock(&process_sp->GetRunLock());
713 std::lock_guard<std::recursive_mutex> guard(
714 process_sp->GetTarget().GetAPIMutex());
716 process_sp->GetThreadList().FindThreadByIndexID(index_id, can_update);
791 EventSP event_sp =
event.GetSP();
792 EventData *event_data = event_sp ? event_sp->GetData() :
nullptr;
793 return event_data && (event_data->
GetFlavor() ==
815 uint32_t alignment, uint32_t max_matches,
SBError &
error) {
822 error.SetErrorString(
"SBProcess is invalid");
826 if (!stop_locker.
TryLock(&process_sp->GetRunLock())) {
827 error.SetErrorString(
"process is running");
830 std::lock_guard<std::recursive_mutex> guard(
831 process_sp->GetTarget().GetAPIMutex());
832 matches.
m_opaque_up->ref() = process_sp->FindRangesInMemory(
833 reinterpret_cast<const uint8_t *
>(buf), size, ranges.
ref().
ref(),
834 alignment, max_matches,
error.ref());
846 error.SetErrorString(
"SBProcess is invalid");
851 if (!stop_locker.
TryLock(&process_sp->GetRunLock())) {
852 error.SetErrorString(
"process is running");
856 std::lock_guard<std::recursive_mutex> guard(
857 process_sp->GetTarget().GetAPIMutex());
858 return process_sp->FindInMemory(
reinterpret_cast<const uint8_t *
>(buf), size,
859 range.
ref(), alignment,
error.ref());
867 sb_error.SetErrorStringWithFormat(
868 "no buffer provided to read %zu bytes into", dst_len);
872 size_t bytes_read = 0;
878 if (stop_locker.
TryLock(&process_sp->GetRunLock())) {
879 std::lock_guard<std::recursive_mutex> guard(
880 process_sp->GetTarget().GetAPIMutex());
881 bytes_read = process_sp->ReadMemory(addr, dst, dst_len, sb_error.
ref());
896 size_t bytes_read = 0;
900 if (stop_locker.
TryLock(&process_sp->GetRunLock())) {
901 std::lock_guard<std::recursive_mutex> guard(
902 process_sp->GetTarget().GetAPIMutex());
903 bytes_read = process_sp->ReadCStringFromMemory(addr, (
char *)buf, size,
922 if (stop_locker.
TryLock(&process_sp->GetRunLock())) {
923 std::lock_guard<std::recursive_mutex> guard(
924 process_sp->GetTarget().GetAPIMutex());
925 value = process_sp->ReadUnsignedIntegerFromMemory(addr, byte_size, 0,
944 if (stop_locker.
TryLock(&process_sp->GetRunLock())) {
945 std::lock_guard<std::recursive_mutex> guard(
946 process_sp->GetTarget().GetAPIMutex());
947 ptr = process_sp->ReadPointerFromMemory(addr, sb_error.
ref());
961 size_t bytes_written = 0;
967 if (stop_locker.
TryLock(&process_sp->GetRunLock())) {
968 std::lock_guard<std::recursive_mutex> guard(
969 process_sp->GetTarget().GetAPIMutex());
971 process_sp->WriteMemory(addr, src, src_len, sb_error.
ref());
977 return bytes_written;
985 process_sp->GetStatus(status.
ref());
997 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer();
998 const char *exe_name =
nullptr;
1002 strm.
Printf(
"SBProcess: pid = %" PRIu64
", state = %s, threads = %d%s%s",
1005 exe_name ? exe_name :
"");
1019 PlatformSP platform_sp = process_sp->GetTarget().GetPlatform();
1024 auto expected_data =
1025 platform_sp->FetchExtendedCrashInformation(*process_sp.get());
1031 data.
m_impl_up->SetObjectSP(fetched_data);
1042 std::lock_guard<std::recursive_mutex> guard(
1043 process_sp->GetTarget().GetAPIMutex());
1044 std::optional<uint32_t> actual_num = process_sp->GetWatchpointSlotCount();
1048 sb_error.
SetErrorString(
"Unable to determine number of watchpoints");
1071 if (stop_locker.
TryLock(&process_sp->GetRunLock())) {
1072 std::lock_guard<std::recursive_mutex> guard(
1073 process_sp->GetTarget().GetAPIMutex());
1074 PlatformSP platform_sp = process_sp->GetTarget().GetPlatform();
1075 return platform_sp->LoadImage(process_sp.get(), *sb_local_image_spec,
1076 *sb_remote_image_spec, sb_error.
ref());
1095 if (stop_locker.
TryLock(&process_sp->GetRunLock())) {
1096 std::lock_guard<std::recursive_mutex> guard(
1097 process_sp->GetTarget().GetAPIMutex());
1098 PlatformSP platform_sp = process_sp->GetTarget().GetPlatform();
1099 size_t num_paths = paths.
GetSize();
1100 std::vector<std::string> paths_vec;
1101 paths_vec.reserve(num_paths);
1102 for (
size_t i = 0; i < num_paths; i++)
1106 uint32_t token = platform_sp->LoadImageUsingPaths(
1107 process_sp.get(), *image_spec, paths_vec,
error.ref(), &loaded_spec);
1109 loaded_path = loaded_spec;
1112 error.SetErrorString(
"process is running");
1115 error.SetErrorString(
"process is invalid");
1128 if (stop_locker.
TryLock(&process_sp->GetRunLock())) {
1129 std::lock_guard<std::recursive_mutex> guard(
1130 process_sp->GetTarget().GetAPIMutex());
1131 PlatformSP platform_sp = process_sp->GetTarget().GetPlatform();
1133 platform_sp->UnloadImage(process_sp.get(), image_token));
1149 if (stop_locker.
TryLock(&process_sp->GetRunLock())) {
1150 std::lock_guard<std::recursive_mutex> guard(
1151 process_sp->GetTarget().GetAPIMutex());
1152 sb_error.
SetError(process_sp->SendEventData(event_data));
1165 if (process_sp && process_sp->GetSystemRuntime()) {
1176 if (process_sp && process_sp->GetSystemRuntime()) {
1178 const std::vector<ConstString> &names =
1180 if (idx < names.size()) {
1181 return names[idx].AsCString();
1206 std::lock_guard<std::recursive_mutex> guard(
1207 process_sp->GetTarget().GetAPIMutex());
1210 process_sp->GetInstrumentationRuntime(type);
1212 if (!runtime_sp.get())
1215 return runtime_sp->IsActive();
1246 error.SetErrorString(
"SBProcess is invalid");
1250 std::lock_guard<std::recursive_mutex> guard(
1251 process_sp->GetTarget().GetAPIMutex());
1254 error.SetErrorString(
"the process is not stopped");
1272 if (stop_locker.
TryLock(&process_sp->GetRunLock())) {
1273 std::lock_guard<std::recursive_mutex> guard(
1274 process_sp->GetTarget().GetAPIMutex());
1277 process_sp->GetMemoryRegionInfo(load_addr, sb_region_info.
ref());
1294 if (process_sp && stop_locker.
TryLock(&process_sp->GetRunLock())) {
1295 std::lock_guard<std::recursive_mutex> guard(
1296 process_sp->GetTarget().GetAPIMutex());
1298 process_sp->GetMemoryRegions(sb_region_list.
ref());
1301 return sb_region_list;
1310 if (process_sp && process_sp->GetProcessInfo(proc_info)) {
1313 return sb_proc_info;
1322 core_file = process_sp->GetCoreFile();
1335 return process_sp->GetHighmemCodeAddressMask();
1337 return process_sp->GetCodeAddressMask();
1340 return process_sp->GetHighmemDataAddressMask();
1342 return process_sp->GetDataAddressMask();
1345 return process_sp->GetHighmemDataAddressMask();
1347 return process_sp->GetDataAddressMask();
1361 process_sp->SetCodeAddressMask(mask);
1362 process_sp->SetHighmemCodeAddressMask(mask);
1364 process_sp->SetHighmemCodeAddressMask(mask);
1366 process_sp->SetCodeAddressMask(mask);
1371 process_sp->SetDataAddressMask(mask);
1372 process_sp->SetHighmemDataAddressMask(mask);
1374 process_sp->SetHighmemDataAddressMask(mask);
1376 process_sp->SetDataAddressMask(mask);
1381 process_sp->SetCodeAddressMask(mask);
1382 process_sp->SetDataAddressMask(mask);
1383 process_sp->SetHighmemCodeAddressMask(mask);
1384 process_sp->SetHighmemDataAddressMask(mask);
1386 process_sp->SetHighmemCodeAddressMask(mask);
1387 process_sp->SetHighmemDataAddressMask(mask);
1389 process_sp->SetCodeAddressMask(mask);
1390 process_sp->SetDataAddressMask(mask);
1410 return process_sp->FixAnyAddress(addr);
1412 return process_sp->FixDataAddress(addr);
1414 return process_sp->FixCodeAddress(addr);
1427 if (stop_locker.
TryLock(&process_sp->GetRunLock())) {
1428 std::lock_guard<std::recursive_mutex> guard(
1429 process_sp->GetTarget().GetAPIMutex());
1430 addr = process_sp->AllocateMemory(size, permissions, sb_error.
ref());
1447 if (stop_locker.
TryLock(&process_sp->GetRunLock())) {
1448 std::lock_guard<std::recursive_mutex> guard(
1449 process_sp->GetTarget().GetAPIMutex());
static llvm::raw_ostream & error(Stream &strm)
#define LLDB_INSTRUMENT()
#define LLDB_INSTRUMENT_VA(...)
std::unique_ptr< lldb_private::AddressRangeListImpl > m_opaque_up
lldb_private::AddressRangeListImpl & ref() const
lldb_private::AddressRange & ref() const
void AppendMessage(const char *message)
static const char * StateAsCString(lldb::StateType state)
void SetErrorString(const char *err_str)
void SetError(uint32_t err, lldb::ErrorType type)
lldb_private::Status & ref()
lldb_private::Event * get() const
void reset(lldb::EventSP &event_sp)
lldb::EventSP & GetSP() const
uint32_t GetPath(char *dst_path, size_t dst_len) const
lldb_private::MemoryRegionInfos & ref()
lldb_private::MemoryRegionInfo & ref()
void SetProcessInfo(const lldb_private::ProcessInstanceInfo &proc_info_ref)
const lldb::SBProcess & operator=(const lldb::SBProcess &rhs)
static size_t GetNumRestartedReasonsFromEvent(const lldb::SBEvent &event)
lldb::SBError SendEventData(const char *data)
lldb::SBBroadcaster GetBroadcaster() const
lldb::SBThread GetThreadAtIndex(size_t index)
static const char * GetBroadcasterClassName()
void AppendEventStateReport(const lldb::SBEvent &event, lldb::SBCommandReturnObject &result)
uint32_t GetNumExtendedBacktraceTypes()
Return the number of different thread-origin extended backtraces this process can support.
size_t PutSTDIN(const char *src, size_t src_len)
lldb::SBQueue GetQueueAtIndex(size_t index)
void ReportEventState(const lldb::SBEvent &event, FILE *out) const
lldb::SBFileSpec GetCoreFile()
Get the file specification for the core file that is currently being used for the process.
const char * GetExitDescription()
lldb::SBThread GetThreadByIndexID(uint32_t index_id)
static const char * GetBroadcasterClass()
static lldb::SBStructuredData GetStructuredDataFromEvent(const lldb::SBEvent &event)
lldb::ProcessSP GetSP() const
lldb::addr_t FindInMemory(const void *buf, uint64_t size, const SBAddressRange &range, uint32_t alignment, SBError &error)
lldb::pid_t GetProcessID()
Gets the process ID.
lldb::addr_t AllocateMemory(size_t size, uint32_t permissions, lldb::SBError &error)
Allocate memory within the process.
static bool EventIsStructuredDataEvent(const lldb::SBEvent &event)
lldb::SBError UnloadImage(uint32_t image_token)
lldb::SBProcessInfo GetProcessInfo()
Return information about the process.
uint32_t GetUniqueID()
Gets the unique ID associated with this process object.
bool GetDescription(lldb::SBStream &description)
size_t GetAsyncProfileData(char *dst, size_t dst_len) const
lldb::addr_t FixAddress(lldb::addr_t addr, lldb::AddressMaskType type=lldb::eAddressMaskTypeAny)
Clear the non-address bits of an addr value and return a virtual address in memory.
lldb::StateType GetState()
lldb::SBThread CreateOSPluginThread(lldb::tid_t tid, lldb::addr_t context)
lldb::SBScriptObject GetScriptedImplementation()
void GetStatus(SBStream &status)
lldb::ByteOrder GetByteOrder() const
size_t ReadCStringFromMemory(addr_t addr, void *char_buf, size_t size, lldb::SBError &error)
lldb::addr_t ReadPointerFromMemory(addr_t addr, lldb::SBError &error)
lldb::SBError DeallocateMemory(lldb::addr_t ptr)
Deallocate memory in the process.
static lldb::StateType GetStateFromEvent(const lldb::SBEvent &event)
lldb::SBThread GetSelectedThread() const
bool SetSelectedThreadByIndexID(uint32_t index_id)
size_t ReadMemory(addr_t addr, void *buf, size_t size, lldb::SBError &error)
const char * GetExtendedBacktraceTypeAtIndex(uint32_t idx)
Return the name of one of the thread-origin extended backtrace methods.
lldb::SBThread GetThreadByID(lldb::tid_t sb_thread_id)
bool RemoteAttachToProcessWithID(lldb::pid_t pid, lldb::SBError &error)
Remote connection related functions.
lldb::SBTarget GetTarget() const
lldb::SBAddressRangeList FindRangesInMemory(const void *buf, uint64_t size, const SBAddressRangeList &ranges, uint32_t alignment, uint32_t max_matches, SBError &error)
const char * GetPluginName()
bool RemoteLaunch(char const **argv, char const **envp, const char *stdin_path, const char *stdout_path, const char *stderr_path, const char *working_directory, uint32_t launch_flags, bool stop_at_entry, lldb::SBError &error)
void SetAddressMask(lldb::AddressMaskType type, lldb::addr_t mask, lldb::AddressMaskRange addr_range=lldb::eAddressMaskRangeLow)
Set the current address mask that can be applied to addresses before reading from memory.
size_t GetSTDOUT(char *dst, size_t dst_len) const
lldb::SBEvent GetStopEventForStopID(uint32_t stop_id)
Gets the stop event corresponding to stop ID.
lldb::SBError Signal(int signal)
static bool GetInterruptedFromEvent(const lldb::SBEvent &event)
lldb::addr_t GetAddressMask(lldb::AddressMaskType type, lldb::AddressMaskRange addr_range=lldb::eAddressMaskRangeLow)
Get the current address mask that will be applied to addresses before reading from memory.
lldb::ProcessWP m_opaque_wp
uint32_t GetNumSupportedHardwareWatchpoints(lldb::SBError &error) const
uint32_t LoadImageUsingPaths(const lldb::SBFileSpec &image_spec, SBStringList &paths, lldb::SBFileSpec &loaded_path, lldb::SBError &error)
Load a shared library into this process, starting with a library name and a list of paths,...
uint32_t LoadImage(lldb::SBFileSpec &remote_image_spec, lldb::SBError &error)
Load a shared library into this process.
void SetAddressableBits(AddressMaskType type, uint32_t num_bits, AddressMaskRange addr_range=lldb::eAddressMaskRangeLow)
Set the number of bits used for addressing in this Process.
static const char * GetRestartedReasonAtIndexFromEvent(const lldb::SBEvent &event, size_t idx)
lldb::SBUnixSignals GetUnixSignals()
lldb::SBThreadCollection GetHistoryThreads(addr_t addr)
bool IsInstrumentationRuntimePresent(InstrumentationRuntimeType type)
bool SetSelectedThread(const lldb::SBThread &thread)
bool SetSelectedThreadByID(lldb::tid_t tid)
void SendAsyncInterrupt()
static bool GetRestartedFromEvent(const lldb::SBEvent &event)
static bool EventIsProcessEvent(const lldb::SBEvent &event)
lldb::SBError GetMemoryRegionInfo(lldb::addr_t load_addr, lldb::SBMemoryRegionInfo ®ion_info)
Query the address load_addr and store the details of the memory region that contains it in the suppli...
void SetSP(const lldb::ProcessSP &process_sp)
size_t WriteMemory(addr_t addr, const void *buf, size_t size, lldb::SBError &error)
lldb::SBError SaveCore(const char *file_name, const char *flavor, SaveCoreStyle core_style)
Save the state of the process in a core file.
lldb::SBMemoryRegionInfoList GetMemoryRegions()
Return the list of memory regions within the process.
uint32_t GetAddressByteSize() const
SBStructuredData GetExtendedCrashInformation()
uint32_t GetStopID(bool include_expression_stops=false)
uint64_t ReadUnsignedFromMemory(addr_t addr, uint32_t byte_size, lldb::SBError &error)
void ForceScriptedState(StateType new_state)
If the process is a scripted process, changes its state to the new state.
static lldb::SBProcess GetProcessFromEvent(const lldb::SBEvent &event)
size_t GetSTDERR(char *dst, size_t dst_len) const
void SetQueue(const lldb::QueueSP &queue_sp)
void SetStyle(lldb::SaveCoreStyle style)
Set the Core dump style.
void SetOutputFile(SBFileSpec output_file)
lldb_private::SaveCoreOptions & ref() const
SBError SetPluginName(const char *plugin)
Set the plugin name.
lldb_private::Stream & ref()
const char * GetStringAtIndex(size_t idx)
StructuredDataImplUP m_impl_up
void SetSP(const lldb::TargetSP &target_sp)
lldb::SBFileSpec GetExecutable()
lldb::tid_t GetThreadID() const
void SetThread(const lldb::ThreadSP &lldb_object_sp)
static lldb::addr_t AddressableBitToMask(uint32_t addressable_bits)
void AppendArguments(const Args &rhs)
A uniqued constant string class.
const char * AsCString(const char *value_if_empty=nullptr) const
Get the string value as a C string.
const char * GetCString() const
Get the string value as a C string.
static llvm::StringRef GetFlavorString()
static lldb::ProcessSP GetProcessFromEvent(const Event *event_ptr)
virtual llvm::StringRef GetFlavor() const =0
const ConstString & GetFilename() const
Filename string const get accessor.
A class that describes an executable image and its associated object and symbol files.
const FileSpec & GetPlatformFileSpec() const
Get accessor for the module platform file specification.
const FileSpec & GetFileSpec() const
Get const accessor for the module file specification.
static Status SaveCore(const lldb::ProcessSP &process_sp, lldb_private::SaveCoreOptions &core_options)
void SetExecutableFile(const FileSpec &exe_file, bool add_exe_file_as_first_arg)
void SetProcessID(lldb::pid_t pid)
Environment & GetEnvironment()
bool TryLock(ProcessRunLock *lock)
static bool GetRestartedFromEvent(const Event *event_ptr)
static lldb::ProcessSP GetProcessFromEvent(const Event *event_ptr)
size_t GetNumRestartedReasons()
static bool GetInterruptedFromEvent(const Event *event_ptr)
const char * GetRestartedReasonAtIndex(size_t idx)
static lldb::StateType GetStateFromEvent(const Event *event_ptr)
static const Process::ProcessEventData * GetEventDataFromEvent(const Event *event_ptr)
static llvm::StringRef GetStaticBroadcasterClass()
A stream class that can stream formatted output to a file.
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
size_t PutCString(llvm::StringRef cstr)
Output a C string to the stream.
std::shared_ptr< Object > ObjectSP
A plug-in interface definition class for system runtimes.
virtual const std::vector< ConstString > & GetExtendedBacktraceTypes()
Return a list of thread origin extended backtraces that may be available.
#define LLDB_INVALID_ADDRESS_MASK
Address Mask Bits not used for addressing are set to 1 in the mask; all mask bits set is an invalid v...
#define LLDB_INVALID_IMAGE_TOKEN
#define LLDB_INVALID_ADDRESS
#define LLDB_INVALID_PROCESS_ID
A class that represents a running process on the host machine.
const char * StateAsCString(lldb::StateType state)
Converts a StateType to a C string.
std::shared_ptr< lldb_private::Queue > QueueSP
std::shared_ptr< lldb_private::Thread > ThreadSP
AddressMaskRange
Used in the SBProcess AddressMask/FixAddress methods.
std::shared_ptr< lldb_private::Platform > PlatformSP
StateType
Process and Thread States.
@ eStateConnected
Process is connected to remote debug services, but not launched or attached to anything yet.
@ eStateStopped
Process or thread is stopped and can be examined.
std::shared_ptr< lldb_private::Process > ProcessSP
InstrumentationRuntimeType
std::shared_ptr< lldb_private::Event > EventSP
ByteOrder
Byte ordering definitions.
std::shared_ptr< lldb_private::Target > TargetSP
AddressMaskType
Used in the SBProcess AddressMask/FixAddress methods.
std::shared_ptr< lldb_private::File > FileSP
std::shared_ptr< lldb_private::InstrumentationRuntime > InstrumentationRuntimeSP