2010-06-09 00:52:24 +08:00
|
|
|
//===-- SBProcess.cpp -------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-06-09 15:44:37 +08:00
|
|
|
#include "lldb/API/SBProcess.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2013-08-28 20:14:27 +08:00
|
|
|
// C Includes
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/lldb-defines.h"
|
|
|
|
#include "lldb/lldb-types.h"
|
|
|
|
|
2010-06-16 03:49:27 +08:00
|
|
|
#include "lldb/Interpreter/Args.h"
|
2010-10-06 11:53:16 +08:00
|
|
|
#include "lldb/Core/Debugger.h"
|
2010-10-26 11:11:13 +08:00
|
|
|
#include "lldb/Core/Log.h"
|
<rdar://problem/11757916>
Make breakpoint setting by file and line much more efficient by only looking for inlined breakpoint locations if we are setting a breakpoint in anything but a source implementation file. Implementing this complex for a many reasons. Turns out that parsing compile units lazily had some issues with respect to how we need to do things with DWARF in .o files. So the fixes in the checkin for this makes these changes:
- Add a new setting called "target.inline-breakpoint-strategy" which can be set to "never", "always", or "headers". "never" will never try and set any inlined breakpoints (fastest). "always" always looks for inlined breakpoint locations (slowest, but most accurate). "headers", which is the default setting, will only look for inlined breakpoint locations if the breakpoint is set in what are consudered to be header files, which is realy defined as "not in an implementation source file".
- modify the breakpoint setting by file and line to check the current "target.inline-breakpoint-strategy" setting and act accordingly
- Modify compile units to be able to get their language and other info lazily. This allows us to create compile units from the debug map and not have to fill all of the details in, and then lazily discover this information as we go on debuggging. This is needed to avoid parsing all .o files when setting breakpoints in implementation only files (no inlines). Otherwise we would need to parse the .o file, the object file (mach-o in our case) and the symbol file (DWARF in the object file) just to see what the compile unit was.
- modify the "SymbolFileDWARFDebugMap" to subclass lldb_private::Module so that the virtual "GetObjectFile()" and "GetSymbolVendor()" functions can be intercepted when the .o file contenst are later lazilly needed. Prior to this fix, when we first instantiated the "SymbolFileDWARFDebugMap" class, we would also make modules, object files and symbol files for every .o file in the debug map because we needed to fix up the sections in the .o files with information that is in the executable debug map. Now we lazily do this in the DebugMapModule::GetObjectFile()
Cleaned up header includes a bit as well.
llvm-svn: 162860
2012-08-30 05:13:06 +08:00
|
|
|
#include "lldb/Core/Module.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Core/State.h"
|
|
|
|
#include "lldb/Core/Stream.h"
|
|
|
|
#include "lldb/Core/StreamFile.h"
|
|
|
|
#include "lldb/Target/Process.h"
|
|
|
|
#include "lldb/Target/RegisterContext.h"
|
2013-11-05 19:00:35 +08:00
|
|
|
#include "lldb/Target/SystemRuntime.h"
|
2010-06-23 09:19:29 +08:00
|
|
|
#include "lldb/Target/Target.h"
|
|
|
|
#include "lldb/Target/Thread.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
// Project includes
|
|
|
|
|
2010-06-09 15:44:37 +08:00
|
|
|
#include "lldb/API/SBBroadcaster.h"
|
|
|
|
#include "lldb/API/SBCommandReturnObject.h"
|
2012-02-24 13:03:03 +08:00
|
|
|
#include "lldb/API/SBDebugger.h"
|
2010-06-09 15:44:37 +08:00
|
|
|
#include "lldb/API/SBEvent.h"
|
2012-02-24 13:03:03 +08:00
|
|
|
#include "lldb/API/SBFileSpec.h"
|
2010-06-09 15:44:37 +08:00
|
|
|
#include "lldb/API/SBThread.h"
|
2014-09-06 09:33:13 +08:00
|
|
|
#include "lldb/API/SBThreadCollection.h"
|
2010-09-20 13:20:02 +08:00
|
|
|
#include "lldb/API/SBStream.h"
|
2010-06-09 15:44:37 +08:00
|
|
|
#include "lldb/API/SBStringList.h"
|
2014-06-24 03:30:49 +08:00
|
|
|
#include "lldb/API/SBUnixSignals.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
|
|
|
|
SBProcess::SBProcess () :
|
2012-07-13 04:32:19 +08:00
|
|
|
m_opaque_wp()
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// SBProcess constructor
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
SBProcess::SBProcess (const SBProcess& rhs) :
|
2012-07-13 04:32:19 +08:00
|
|
|
m_opaque_wp (rhs.m_opaque_wp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SBProcess::SBProcess (const lldb::ProcessSP &process_sp) :
|
2012-07-13 04:32:19 +08:00
|
|
|
m_opaque_wp (process_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-11-06 07:17:00 +08:00
|
|
|
const SBProcess&
|
|
|
|
SBProcess::operator = (const SBProcess& rhs)
|
|
|
|
{
|
|
|
|
if (this != &rhs)
|
2012-07-13 04:32:19 +08:00
|
|
|
m_opaque_wp = rhs.m_opaque_wp;
|
2010-11-06 07:17:00 +08:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Destructor
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
SBProcess::~SBProcess()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-02-16 14:50:00 +08:00
|
|
|
const char *
|
|
|
|
SBProcess::GetBroadcasterClassName ()
|
|
|
|
{
|
|
|
|
return Process::GetStaticBroadcasterClass().AsCString();
|
|
|
|
}
|
|
|
|
|
2012-10-27 03:18:04 +08:00
|
|
|
const char *
|
|
|
|
SBProcess::GetPluginName ()
|
|
|
|
{
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
|
|
|
{
|
2013-05-11 05:47:16 +08:00
|
|
|
return process_sp->GetPluginName().GetCString();
|
2012-10-27 03:18:04 +08:00
|
|
|
}
|
|
|
|
return "<Unknown>";
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
SBProcess::GetShortPluginName ()
|
|
|
|
{
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
|
|
|
{
|
2013-05-11 05:47:16 +08:00
|
|
|
return process_sp->GetPluginName().GetCString();
|
2012-10-27 03:18:04 +08:00
|
|
|
}
|
|
|
|
return "<Unknown>";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-30 15:41:31 +08:00
|
|
|
lldb::ProcessSP
|
|
|
|
SBProcess::GetSP() const
|
|
|
|
{
|
2012-07-13 04:32:19 +08:00
|
|
|
return m_opaque_wp.lock();
|
2012-01-30 15:41:31 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
void
|
2012-01-30 15:41:31 +08:00
|
|
|
SBProcess::SetSP (const ProcessSP &process_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2012-07-13 04:32:19 +08:00
|
|
|
m_opaque_wp = process_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SBProcess::Clear ()
|
|
|
|
{
|
2012-07-13 04:32:19 +08:00
|
|
|
m_opaque_wp.reset();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBProcess::IsValid() const
|
|
|
|
{
|
2012-08-23 05:34:33 +08:00
|
|
|
ProcessSP process_sp(m_opaque_wp.lock());
|
|
|
|
return ((bool) process_sp && process_sp->IsValid());
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2011-03-04 08:31:13 +08:00
|
|
|
bool
|
|
|
|
SBProcess::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)
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2014-04-04 12:06:10 +08:00
|
|
|
if (log)
|
2011-03-04 08:31:13 +08:00
|
|
|
log->Printf ("SBProcess(%p)::RemoteLaunch (argv=%p, envp=%p, stdin=%s, stdout=%s, stderr=%s, working-dir=%s, launch_flags=0x%x, stop_at_entry=%i, &error (%p))...",
|
2014-04-04 12:06:10 +08:00
|
|
|
static_cast<void*>(m_opaque_wp.lock().get()),
|
|
|
|
static_cast<void*>(argv), static_cast<void*>(envp),
|
|
|
|
stdin_path ? stdin_path : "NULL",
|
|
|
|
stdout_path ? stdout_path : "NULL",
|
|
|
|
stderr_path ? stderr_path : "NULL",
|
2011-03-04 08:31:13 +08:00
|
|
|
working_directory ? working_directory : "NULL",
|
2014-04-04 12:06:10 +08:00
|
|
|
launch_flags, stop_at_entry,
|
|
|
|
static_cast<void*>(error.get()));
|
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2011-03-04 08:31:13 +08:00
|
|
|
{
|
2012-04-06 10:17:47 +08:00
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
if (process_sp->GetState() == eStateConnected)
|
2011-03-04 08:31:13 +08:00
|
|
|
{
|
2012-04-06 10:17:47 +08:00
|
|
|
if (stop_at_entry)
|
|
|
|
launch_flags |= eLaunchFlagStopAtEntry;
|
2015-05-30 03:52:29 +08:00
|
|
|
ProcessLaunchInfo launch_info(FileSpec{stdin_path, false},
|
|
|
|
FileSpec{stdout_path, false},
|
|
|
|
FileSpec{stderr_path, false},
|
|
|
|
FileSpec{working_directory, false},
|
|
|
|
launch_flags);
|
2012-04-06 10:17:47 +08:00
|
|
|
Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer();
|
|
|
|
if (exe_module)
|
2013-06-29 08:10:32 +08:00
|
|
|
launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true);
|
2012-04-06 10:17:47 +08:00
|
|
|
if (argv)
|
|
|
|
launch_info.GetArguments().AppendArguments (argv);
|
|
|
|
if (envp)
|
|
|
|
launch_info.GetEnvironmentEntries ().SetArguments (envp);
|
|
|
|
error.SetError (process_sp->Launch (launch_info));
|
2011-03-04 08:31:13 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-04-06 10:17:47 +08:00
|
|
|
error.SetErrorString ("must be in eStateConnected to call RemoteLaunch");
|
2011-03-04 08:31:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
error.SetErrorString ("unable to attach pid");
|
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2011-03-04 08:31:13 +08:00
|
|
|
if (log) {
|
|
|
|
SBStream sstr;
|
|
|
|
error.GetDescription (sstr);
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::RemoteLaunch (...) => SBError (%p): %s",
|
|
|
|
static_cast<void*>(process_sp.get()),
|
|
|
|
static_cast<void*>(error.get()), sstr.GetData());
|
2011-03-04 08:31:13 +08:00
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2011-03-04 08:31:13 +08:00
|
|
|
return error.Success();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBProcess::RemoteAttachToProcessWithID (lldb::pid_t pid, lldb::SBError& error)
|
|
|
|
{
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2011-03-04 08:31:13 +08:00
|
|
|
{
|
2012-04-06 10:17:47 +08:00
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
if (process_sp->GetState() == eStateConnected)
|
2011-03-04 08:31:13 +08:00
|
|
|
{
|
2012-04-06 10:17:47 +08:00
|
|
|
ProcessAttachInfo attach_info;
|
|
|
|
attach_info.SetProcessID (pid);
|
2014-04-04 12:06:10 +08:00
|
|
|
error.SetError (process_sp->Attach (attach_info));
|
2011-03-04 08:31:13 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-04-06 10:17:47 +08:00
|
|
|
error.SetErrorString ("must be in eStateConnected to call RemoteAttachToProcessWithID");
|
2011-03-04 08:31:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
error.SetErrorString ("unable to attach pid");
|
|
|
|
}
|
|
|
|
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2011-03-04 08:31:13 +08:00
|
|
|
if (log) {
|
|
|
|
SBStream sstr;
|
|
|
|
error.GetDescription (sstr);
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::RemoteAttachToProcessWithID (%" PRIu64 ") => SBError (%p): %s",
|
|
|
|
static_cast<void*>(process_sp.get()), pid,
|
|
|
|
static_cast<void*>(error.get()), sstr.GetData());
|
2011-03-04 08:31:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return error.Success();
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
uint32_t
|
|
|
|
SBProcess::GetNumThreads ()
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
uint32_t num_threads = 0;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2012-04-06 00:12:35 +08:00
|
|
|
const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock());
|
2012-01-30 17:04:36 +08:00
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
num_threads = process_sp->GetThreadList().GetSize(can_update);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::GetNumThreads () => %d",
|
|
|
|
static_cast<void*>(process_sp.get()), num_threads);
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
return num_threads;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
SBThread
|
2010-08-27 05:32:51 +08:00
|
|
|
SBProcess::GetSelectedThread () const
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBThread sb_thread;
|
2012-01-30 10:53:15 +08:00
|
|
|
ThreadSP thread_sp;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
2012-01-30 17:04:36 +08:00
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
thread_sp = process_sp->GetThreadList().GetSelectedThread();
|
2012-01-30 10:53:15 +08:00
|
|
|
sb_thread.SetThread (thread_sp);
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::GetSelectedThread () => SBThread(%p)",
|
|
|
|
static_cast<void*>(process_sp.get()),
|
|
|
|
static_cast<void*>(thread_sp.get()));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return sb_thread;
|
|
|
|
}
|
|
|
|
|
<rdar://problem/13010007>
Added the ability for OS plug-ins to lazily populate the thread this. The python OS plug-in classes can now implement the following method:
class OperatingSystemPlugin:
def create_thread(self, tid, context):
# Return a dictionary for a new thread to create it on demand
This will add a new thread to the thread list if it doesn't already exist. The example code in lldb/examples/python/operating_system.py has been updated to show how this call us used.
Cleaned up the code in PythonDataObjects.cpp/h:
- renamed all classes that started with PythonData* to be Python*.
- renamed PythonArray to PythonList. Cleaned up the code to use inheritance where
- Centralized the code that does ref counting in the PythonObject class to a single function.
- Made the "bool PythonObject::Reset(PyObject *)" function be virtual so each subclass can correctly check to ensure a PyObject is of the right type before adopting the object.
- Cleaned up all APIs and added new constructors for the Python* classes to they can all construct form:
- PyObject *
- const PythonObject &
- const lldb::ScriptInterpreterObjectSP &
Cleaned up code in ScriptInterpreterPython:
- Made calling python functions safer by templatizing the production of value formats. Python specifies the value formats based on built in C types (long, long long, etc), and code often uses typedefs for uint32_t, uint64_t, etc when passing arguments down to python. We will now always produce correct value formats as the templatized code will "do the right thing" all the time.
- Fixed issues with the ScriptInterpreterPython::Locker where entering the session and leaving the session had a bunch of issues that could cause the "lldb" module globals lldb.debugger, lldb.target, lldb.process, lldb.thread, and lldb.frame to not be initialized.
llvm-svn: 172873
2013-01-19 07:41:08 +08:00
|
|
|
SBThread
|
|
|
|
SBProcess::CreateOSPluginThread (lldb::tid_t tid, lldb::addr_t context)
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2014-04-04 12:06:10 +08:00
|
|
|
|
<rdar://problem/13010007>
Added the ability for OS plug-ins to lazily populate the thread this. The python OS plug-in classes can now implement the following method:
class OperatingSystemPlugin:
def create_thread(self, tid, context):
# Return a dictionary for a new thread to create it on demand
This will add a new thread to the thread list if it doesn't already exist. The example code in lldb/examples/python/operating_system.py has been updated to show how this call us used.
Cleaned up the code in PythonDataObjects.cpp/h:
- renamed all classes that started with PythonData* to be Python*.
- renamed PythonArray to PythonList. Cleaned up the code to use inheritance where
- Centralized the code that does ref counting in the PythonObject class to a single function.
- Made the "bool PythonObject::Reset(PyObject *)" function be virtual so each subclass can correctly check to ensure a PyObject is of the right type before adopting the object.
- Cleaned up all APIs and added new constructors for the Python* classes to they can all construct form:
- PyObject *
- const PythonObject &
- const lldb::ScriptInterpreterObjectSP &
Cleaned up code in ScriptInterpreterPython:
- Made calling python functions safer by templatizing the production of value formats. Python specifies the value formats based on built in C types (long, long long, etc), and code often uses typedefs for uint32_t, uint64_t, etc when passing arguments down to python. We will now always produce correct value formats as the templatized code will "do the right thing" all the time.
- Fixed issues with the ScriptInterpreterPython::Locker where entering the session and leaving the session had a bunch of issues that could cause the "lldb" module globals lldb.debugger, lldb.target, lldb.process, lldb.thread, and lldb.frame to not be initialized.
llvm-svn: 172873
2013-01-19 07:41:08 +08:00
|
|
|
SBThread sb_thread;
|
|
|
|
ThreadSP thread_sp;
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
thread_sp = process_sp->CreateOSPluginThread(tid, context);
|
|
|
|
sb_thread.SetThread (thread_sp);
|
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
<rdar://problem/13010007>
Added the ability for OS plug-ins to lazily populate the thread this. The python OS plug-in classes can now implement the following method:
class OperatingSystemPlugin:
def create_thread(self, tid, context):
# Return a dictionary for a new thread to create it on demand
This will add a new thread to the thread list if it doesn't already exist. The example code in lldb/examples/python/operating_system.py has been updated to show how this call us used.
Cleaned up the code in PythonDataObjects.cpp/h:
- renamed all classes that started with PythonData* to be Python*.
- renamed PythonArray to PythonList. Cleaned up the code to use inheritance where
- Centralized the code that does ref counting in the PythonObject class to a single function.
- Made the "bool PythonObject::Reset(PyObject *)" function be virtual so each subclass can correctly check to ensure a PyObject is of the right type before adopting the object.
- Cleaned up all APIs and added new constructors for the Python* classes to they can all construct form:
- PyObject *
- const PythonObject &
- const lldb::ScriptInterpreterObjectSP &
Cleaned up code in ScriptInterpreterPython:
- Made calling python functions safer by templatizing the production of value formats. Python specifies the value formats based on built in C types (long, long long, etc), and code often uses typedefs for uint32_t, uint64_t, etc when passing arguments down to python. We will now always produce correct value formats as the templatized code will "do the right thing" all the time.
- Fixed issues with the ScriptInterpreterPython::Locker where entering the session and leaving the session had a bunch of issues that could cause the "lldb" module globals lldb.debugger, lldb.target, lldb.process, lldb.thread, and lldb.frame to not be initialized.
llvm-svn: 172873
2013-01-19 07:41:08 +08:00
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::CreateOSPluginThread (tid=0x%" PRIx64 ", context=0x%" PRIx64 ") => SBThread(%p)",
|
|
|
|
static_cast<void*>(process_sp.get()), tid, context,
|
|
|
|
static_cast<void*>(thread_sp.get()));
|
|
|
|
|
<rdar://problem/13010007>
Added the ability for OS plug-ins to lazily populate the thread this. The python OS plug-in classes can now implement the following method:
class OperatingSystemPlugin:
def create_thread(self, tid, context):
# Return a dictionary for a new thread to create it on demand
This will add a new thread to the thread list if it doesn't already exist. The example code in lldb/examples/python/operating_system.py has been updated to show how this call us used.
Cleaned up the code in PythonDataObjects.cpp/h:
- renamed all classes that started with PythonData* to be Python*.
- renamed PythonArray to PythonList. Cleaned up the code to use inheritance where
- Centralized the code that does ref counting in the PythonObject class to a single function.
- Made the "bool PythonObject::Reset(PyObject *)" function be virtual so each subclass can correctly check to ensure a PyObject is of the right type before adopting the object.
- Cleaned up all APIs and added new constructors for the Python* classes to they can all construct form:
- PyObject *
- const PythonObject &
- const lldb::ScriptInterpreterObjectSP &
Cleaned up code in ScriptInterpreterPython:
- Made calling python functions safer by templatizing the production of value formats. Python specifies the value formats based on built in C types (long, long long, etc), and code often uses typedefs for uint32_t, uint64_t, etc when passing arguments down to python. We will now always produce correct value formats as the templatized code will "do the right thing" all the time.
- Fixed issues with the ScriptInterpreterPython::Locker where entering the session and leaving the session had a bunch of issues that could cause the "lldb" module globals lldb.debugger, lldb.target, lldb.process, lldb.thread, and lldb.frame to not be initialized.
llvm-svn: 172873
2013-01-19 07:41:08 +08:00
|
|
|
return sb_thread;
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBTarget
|
|
|
|
SBProcess::GetTarget() const
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBTarget sb_target;
|
2012-01-30 15:41:31 +08:00
|
|
|
TargetSP target_sp;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2012-01-30 15:41:31 +08:00
|
|
|
{
|
2012-01-30 17:04:36 +08:00
|
|
|
target_sp = process_sp->GetTarget().shared_from_this();
|
2012-01-30 15:41:31 +08:00
|
|
|
sb_target.SetSP (target_sp);
|
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2010-10-26 11:11:13 +08:00
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::GetTarget () => SBTarget(%p)",
|
|
|
|
static_cast<void*>(process_sp.get()),
|
|
|
|
static_cast<void*>(target_sp.get()));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return sb_target;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
size_t
|
|
|
|
SBProcess::PutSTDIN (const char *src, size_t src_len)
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
size_t ret_val = 0;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
Error error;
|
2012-01-30 17:04:36 +08:00
|
|
|
ret_val = process_sp->PutSTDIN (src, src_len, error);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2010-10-26 11:11:13 +08:00
|
|
|
if (log)
|
2014-03-04 03:15:20 +08:00
|
|
|
log->Printf("SBProcess(%p)::PutSTDIN (src=\"%s\", src_len=%" PRIu64 ") => %" PRIu64,
|
2014-04-04 12:06:10 +08:00
|
|
|
static_cast<void*>(process_sp.get()), src,
|
|
|
|
static_cast<uint64_t>(src_len),
|
|
|
|
static_cast<uint64_t>(ret_val));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
return ret_val;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
SBProcess::GetSTDOUT (char *dst, size_t dst_len) const
|
|
|
|
{
|
2010-10-31 11:01:06 +08:00
|
|
|
size_t bytes_read = 0;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
Error error;
|
2012-01-30 17:04:36 +08:00
|
|
|
bytes_read = process_sp->GetSTDOUT (dst, dst_len, error);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
if (log)
|
2012-11-30 05:49:15 +08:00
|
|
|
log->Printf ("SBProcess(%p)::GetSTDOUT (dst=\"%.*s\", dst_len=%" PRIu64 ") => %" PRIu64,
|
2014-04-04 12:06:10 +08:00
|
|
|
static_cast<void*>(process_sp.get()),
|
|
|
|
static_cast<int>(bytes_read), dst,
|
|
|
|
static_cast<uint64_t>(dst_len),
|
|
|
|
static_cast<uint64_t>(bytes_read));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-10-31 11:01:06 +08:00
|
|
|
return bytes_read;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
SBProcess::GetSTDERR (char *dst, size_t dst_len) const
|
|
|
|
{
|
2010-10-31 11:01:06 +08:00
|
|
|
size_t bytes_read = 0;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
Error error;
|
2012-01-30 17:04:36 +08:00
|
|
|
bytes_read = process_sp->GetSTDERR (dst, dst_len, error);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
if (log)
|
2012-11-30 05:49:15 +08:00
|
|
|
log->Printf ("SBProcess(%p)::GetSTDERR (dst=\"%.*s\", dst_len=%" PRIu64 ") => %" PRIu64,
|
2014-04-04 12:06:10 +08:00
|
|
|
static_cast<void*>(process_sp.get()),
|
|
|
|
static_cast<int>(bytes_read), dst,
|
|
|
|
static_cast<uint64_t>(dst_len),
|
|
|
|
static_cast<uint64_t>(bytes_read));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-10-31 11:01:06 +08:00
|
|
|
return bytes_read;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2012-11-17 08:21:04 +08:00
|
|
|
size_t
|
|
|
|
SBProcess::GetAsyncProfileData(char *dst, size_t dst_len) const
|
|
|
|
{
|
|
|
|
size_t bytes_read = 0;
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
|
|
|
{
|
|
|
|
Error error;
|
|
|
|
bytes_read = process_sp->GetAsyncProfileData (dst, dst_len, error);
|
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2012-11-17 08:21:04 +08:00
|
|
|
if (log)
|
2015-09-22 13:07:56 +08:00
|
|
|
log->Printf ("SBProcess(%p)::GetAsyncProfileData (dst=\"%.*s\", dst_len=%" PRIu64 ") => %" PRIu64,
|
2014-04-04 12:06:10 +08:00
|
|
|
static_cast<void*>(process_sp.get()),
|
|
|
|
static_cast<int>(bytes_read), dst,
|
|
|
|
static_cast<uint64_t>(dst_len),
|
|
|
|
static_cast<uint64_t>(bytes_read));
|
|
|
|
|
2012-11-17 08:21:04 +08:00
|
|
|
return bytes_read;
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
void
|
2010-08-27 05:32:51 +08:00
|
|
|
SBProcess::ReportEventState (const SBEvent &event, FILE *out) const
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
if (out == NULL)
|
|
|
|
return;
|
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
const StateType event_state = SBProcess::GetStateFromEvent (event);
|
|
|
|
char message[1024];
|
|
|
|
int message_len = ::snprintf (message,
|
|
|
|
sizeof (message),
|
2012-11-30 05:49:15 +08:00
|
|
|
"Process %" PRIu64 " %s\n",
|
2012-01-30 17:04:36 +08:00
|
|
|
process_sp->GetID(),
|
2010-06-09 00:52:24 +08:00
|
|
|
SBDebugger::StateAsCString (event_state));
|
|
|
|
|
|
|
|
if (message_len > 0)
|
|
|
|
::fwrite (message, 1, message_len, out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-08-27 05:32:51 +08:00
|
|
|
SBProcess::AppendEventStateReport (const SBEvent &event, SBCommandReturnObject &result)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
const StateType event_state = SBProcess::GetStateFromEvent (event);
|
|
|
|
char message[1024];
|
|
|
|
::snprintf (message,
|
|
|
|
sizeof (message),
|
2012-11-30 05:49:15 +08:00
|
|
|
"Process %" PRIu64 " %s\n",
|
2012-01-30 17:04:36 +08:00
|
|
|
process_sp->GetID(),
|
2010-06-09 00:52:24 +08:00
|
|
|
SBDebugger::StateAsCString (event_state));
|
|
|
|
|
|
|
|
result.AppendMessage (message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2010-08-27 05:32:51 +08:00
|
|
|
SBProcess::SetSelectedThread (const SBThread &thread)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
2012-01-30 17:04:36 +08:00
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
return process_sp->GetThreadList().SetSelectedThreadByID (thread.GetThreadID());
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-10-13 07:32:11 +08:00
|
|
|
bool
|
|
|
|
SBProcess::SetSelectedThreadByID (lldb::tid_t tid)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
bool ret_val = false;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
2012-01-30 17:04:36 +08:00
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
ret_val = process_sp->GetThreadList().SetSelectedThreadByID (tid);
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
if (log)
|
2012-11-30 05:49:15 +08:00
|
|
|
log->Printf ("SBProcess(%p)::SetSelectedThreadByID (tid=0x%4.4" PRIx64 ") => %s",
|
2014-04-04 12:06:10 +08:00
|
|
|
static_cast<void*>(process_sp.get()), tid,
|
|
|
|
(ret_val ? "true" : "false"));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
return ret_val;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2012-07-14 04:18:18 +08:00
|
|
|
bool
|
|
|
|
SBProcess::SetSelectedThreadByIndexID (uint32_t index_id)
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2012-07-14 04:18:18 +08:00
|
|
|
|
|
|
|
bool ret_val = false;
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
ret_val = process_sp->GetThreadList().SetSelectedThreadByIndexID (index_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::SetSelectedThreadByID (tid=0x%x) => %s",
|
|
|
|
static_cast<void*>(process_sp.get()), index_id,
|
|
|
|
(ret_val ? "true" : "false"));
|
2012-07-14 04:18:18 +08:00
|
|
|
|
|
|
|
return ret_val;
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBThread
|
|
|
|
SBProcess::GetThreadAtIndex (size_t index)
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2012-01-30 10:53:15 +08:00
|
|
|
SBThread sb_thread;
|
|
|
|
ThreadSP thread_sp;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock());
|
2012-01-30 17:04:36 +08:00
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
2012-04-06 00:12:35 +08:00
|
|
|
thread_sp = process_sp->GetThreadList().GetThreadAtIndex(index, can_update);
|
2012-01-30 10:53:15 +08:00
|
|
|
sb_thread.SetThread (thread_sp);
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
if (log)
|
2010-10-29 12:59:35 +08:00
|
|
|
log->Printf ("SBProcess(%p)::GetThreadAtIndex (index=%d) => SBThread(%p)",
|
2014-04-04 12:06:10 +08:00
|
|
|
static_cast<void*>(process_sp.get()),
|
|
|
|
static_cast<uint32_t>(index),
|
|
|
|
static_cast<void*>(thread_sp.get()));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2012-01-30 10:53:15 +08:00
|
|
|
return sb_thread;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2013-12-13 08:29:16 +08:00
|
|
|
uint32_t
|
|
|
|
SBProcess::GetNumQueues ()
|
|
|
|
{
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
|
|
|
|
|
|
uint32_t num_queues = 0;
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
|
|
|
{
|
|
|
|
Process::StopLocker stop_locker;
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2013-12-13 08:29:16 +08:00
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
num_queues = process_sp->GetQueueList().GetSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::GetNumQueues () => %d",
|
|
|
|
static_cast<void*>(process_sp.get()), num_queues);
|
2013-12-13 08:29:16 +08:00
|
|
|
|
|
|
|
return num_queues;
|
|
|
|
}
|
|
|
|
|
|
|
|
SBQueue
|
|
|
|
SBProcess::GetQueueAtIndex (size_t index)
|
|
|
|
{
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
|
|
|
|
|
|
SBQueue sb_queue;
|
|
|
|
QueueSP queue_sp;
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
|
|
|
{
|
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
queue_sp = process_sp->GetQueueList().GetQueueAtIndex(index);
|
|
|
|
sb_queue.SetQueue (queue_sp);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (log)
|
|
|
|
log->Printf ("SBProcess(%p)::GetQueueAtIndex (index=%d) => SBQueue(%p)",
|
2014-04-04 12:06:10 +08:00
|
|
|
static_cast<void*>(process_sp.get()),
|
|
|
|
static_cast<uint32_t>(index),
|
|
|
|
static_cast<void*>(queue_sp.get()));
|
2013-12-13 08:29:16 +08:00
|
|
|
|
|
|
|
return sb_queue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-09 07:22:42 +08:00
|
|
|
uint32_t
|
|
|
|
SBProcess::GetStopID(bool include_expression_stops)
|
|
|
|
{
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
if (include_expression_stops)
|
|
|
|
return process_sp->GetStopID();
|
|
|
|
else
|
|
|
|
return process_sp->GetLastNaturalStopID();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-05-20 18:15:47 +08:00
|
|
|
SBEvent
|
|
|
|
SBProcess::GetStopEventForStopID(uint32_t stop_id)
|
|
|
|
{
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
|
|
|
|
|
|
SBEvent sb_event;
|
|
|
|
EventSP event_sp;
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
event_sp = process_sp->GetStopEventForStopID(stop_id);
|
|
|
|
sb_event.reset(event_sp);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (log)
|
|
|
|
log->Printf ("SBProcess(%p)::GetStopEventForStopID (stop_id=%" PRIu32 ") => SBEvent(%p)",
|
|
|
|
static_cast<void*>(process_sp.get()),
|
|
|
|
stop_id,
|
|
|
|
static_cast<void*>(event_sp.get()));
|
|
|
|
|
|
|
|
return sb_event;
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
StateType
|
|
|
|
SBProcess::GetState ()
|
|
|
|
{
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
StateType ret_val = eStateInvalid;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
2012-01-30 17:04:36 +08:00
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
ret_val = process_sp->GetState();
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::GetState () => %s",
|
|
|
|
static_cast<void*>(process_sp.get()),
|
2010-10-27 07:49:36 +08:00
|
|
|
lldb_private::StateAsCString (ret_val));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
return ret_val;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
SBProcess::GetExitStatus ()
|
|
|
|
{
|
2010-10-30 12:51:46 +08:00
|
|
|
int exit_status = 0;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
2012-01-30 17:04:36 +08:00
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
exit_status = process_sp->GetExitStatus ();
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-30 12:51:46 +08:00
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::GetExitStatus () => %i (0x%8.8x)",
|
|
|
|
static_cast<void*>(process_sp.get()), exit_status,
|
|
|
|
exit_status);
|
2010-10-30 12:51:46 +08:00
|
|
|
|
|
|
|
return exit_status;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
SBProcess::GetExitDescription ()
|
|
|
|
{
|
2010-10-30 12:51:46 +08:00
|
|
|
const char *exit_desc = NULL;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
2012-01-30 17:04:36 +08:00
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
exit_desc = process_sp->GetExitDescription ();
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-30 12:51:46 +08:00
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::GetExitDescription () => %s",
|
|
|
|
static_cast<void*>(process_sp.get()), exit_desc);
|
2010-10-30 12:51:46 +08:00
|
|
|
return exit_desc;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
lldb::pid_t
|
|
|
|
SBProcess::GetProcessID ()
|
|
|
|
{
|
2010-10-26 11:11:13 +08:00
|
|
|
lldb::pid_t ret_val = LLDB_INVALID_PROCESS_ID;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
|
|
|
ret_val = process_sp->GetID();
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::GetProcessID () => %" PRIu64,
|
|
|
|
static_cast<void*>(process_sp.get()), ret_val);
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
return ret_val;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2013-01-17 01:29:04 +08:00
|
|
|
uint32_t
|
|
|
|
SBProcess::GetUniqueID()
|
|
|
|
{
|
|
|
|
uint32_t ret_val = 0;
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
|
|
|
ret_val = process_sp->GetUniqueID();
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2013-01-17 01:29:04 +08:00
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::GetUniqueID () => %" PRIu32,
|
|
|
|
static_cast<void*>(process_sp.get()), ret_val);
|
2013-01-17 01:29:04 +08:00
|
|
|
return ret_val;
|
|
|
|
}
|
|
|
|
|
2011-03-02 06:56:31 +08:00
|
|
|
ByteOrder
|
|
|
|
SBProcess::GetByteOrder () const
|
|
|
|
{
|
|
|
|
ByteOrder byteOrder = eByteOrderInvalid;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
|
|
|
byteOrder = process_sp->GetTarget().GetArchitecture().GetByteOrder();
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2011-03-02 06:56:31 +08:00
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::GetByteOrder () => %d",
|
|
|
|
static_cast<void*>(process_sp.get()), byteOrder);
|
2011-03-02 06:56:31 +08:00
|
|
|
|
|
|
|
return byteOrder;
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
uint32_t
|
|
|
|
SBProcess::GetAddressByteSize () const
|
|
|
|
{
|
2010-10-26 11:11:13 +08:00
|
|
|
uint32_t size = 0;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
|
|
|
size = process_sp->GetTarget().GetArchitecture().GetAddressByteSize();
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::GetAddressByteSize () => %d",
|
|
|
|
static_cast<void*>(process_sp.get()), size);
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
return size;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
SBError
|
|
|
|
SBProcess::Continue ()
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBError sb_error;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
|
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::Continue ()...",
|
|
|
|
static_cast<void*>(process_sp.get()));
|
2012-01-30 17:04:36 +08:00
|
|
|
|
|
|
|
if (process_sp)
|
2010-10-06 11:53:16 +08:00
|
|
|
{
|
2012-01-30 17:04:36 +08:00
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2014-10-21 09:00:42 +08:00
|
|
|
if (process_sp->GetTarget().GetDebugger().GetAsyncExecution ())
|
|
|
|
sb_error.ref() = process_sp->Resume ();
|
|
|
|
else
|
|
|
|
sb_error.ref() = process_sp->ResumeSynchronous (NULL);
|
2010-10-06 11:53:16 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
else
|
|
|
|
sb_error.SetErrorString ("SBProcess is invalid");
|
|
|
|
|
2010-10-26 11:11:13 +08:00
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
SBStream sstr;
|
|
|
|
sb_error.GetDescription (sstr);
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::Continue () => SBError (%p): %s",
|
|
|
|
static_cast<void*>(process_sp.get()),
|
|
|
|
static_cast<void*>(sb_error.get()), sstr.GetData());
|
2010-10-26 11:11:13 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return sb_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SBError
|
|
|
|
SBProcess::Destroy ()
|
|
|
|
{
|
|
|
|
SBError sb_error;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2011-01-23 07:43:18 +08:00
|
|
|
{
|
2012-01-30 17:04:36 +08:00
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
2015-04-17 13:01:58 +08:00
|
|
|
sb_error.SetError(process_sp->Destroy(false));
|
2011-01-23 07:43:18 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
else
|
|
|
|
sb_error.SetErrorString ("SBProcess is invalid");
|
|
|
|
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-30 12:51:46 +08:00
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
SBStream sstr;
|
|
|
|
sb_error.GetDescription (sstr);
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::Destroy () => SBError (%p): %s",
|
|
|
|
static_cast<void*>(process_sp.get()),
|
|
|
|
static_cast<void*>(sb_error.get()), sstr.GetData());
|
2010-10-30 12:51:46 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return sb_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SBError
|
|
|
|
SBProcess::Stop ()
|
|
|
|
{
|
|
|
|
SBError sb_error;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
2012-01-30 17:04:36 +08:00
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
sb_error.SetError (process_sp->Halt());
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
else
|
|
|
|
sb_error.SetErrorString ("SBProcess is invalid");
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
SBStream sstr;
|
|
|
|
sb_error.GetDescription (sstr);
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::Stop () => SBError (%p): %s",
|
|
|
|
static_cast<void*>(process_sp.get()),
|
|
|
|
static_cast<void*>(sb_error.get()), sstr.GetData());
|
2010-10-26 11:11:13 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return sb_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
SBError
|
|
|
|
SBProcess::Kill ()
|
|
|
|
{
|
|
|
|
SBError sb_error;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
2012-01-30 17:04:36 +08:00
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
2015-04-17 13:01:58 +08:00
|
|
|
sb_error.SetError (process_sp->Destroy(true));
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
else
|
|
|
|
sb_error.SetErrorString ("SBProcess is invalid");
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
SBStream sstr;
|
|
|
|
sb_error.GetDescription (sstr);
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::Kill () => SBError (%p): %s",
|
|
|
|
static_cast<void*>(process_sp.get()),
|
|
|
|
static_cast<void*>(sb_error.get()), sstr.GetData());
|
2010-10-26 11:11:13 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return sb_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
SBError
|
|
|
|
SBProcess::Detach ()
|
2013-05-02 08:27:30 +08:00
|
|
|
{
|
|
|
|
// FIXME: This should come from a process default.
|
|
|
|
bool keep_stopped = false;
|
|
|
|
return Detach (keep_stopped);
|
|
|
|
}
|
|
|
|
|
|
|
|
SBError
|
|
|
|
SBProcess::Detach (bool keep_stopped)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
SBError sb_error;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
2012-01-30 17:04:36 +08:00
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
2013-05-02 08:27:30 +08:00
|
|
|
sb_error.SetError (process_sp->Detach(keep_stopped));
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
else
|
|
|
|
sb_error.SetErrorString ("SBProcess is invalid");
|
|
|
|
|
|
|
|
return sb_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
SBError
|
2010-10-30 12:51:46 +08:00
|
|
|
SBProcess::Signal (int signo)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
SBError sb_error;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
2012-01-30 17:04:36 +08:00
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
sb_error.SetError (process_sp->Signal (signo));
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
else
|
2014-04-04 12:06:10 +08:00
|
|
|
sb_error.SetErrorString ("SBProcess is invalid");
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-30 12:51:46 +08:00
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
SBStream sstr;
|
|
|
|
sb_error.GetDescription (sstr);
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::Signal (signo=%i) => SBError (%p): %s",
|
|
|
|
static_cast<void*>(process_sp.get()), signo,
|
|
|
|
static_cast<void*>(sb_error.get()), sstr.GetData());
|
2010-10-30 12:51:46 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
return sb_error;
|
|
|
|
}
|
|
|
|
|
2014-06-24 03:30:49 +08:00
|
|
|
SBUnixSignals
|
|
|
|
SBProcess::GetUnixSignals()
|
|
|
|
{
|
2015-07-14 09:09:28 +08:00
|
|
|
if (auto process_sp = GetSP())
|
|
|
|
return SBUnixSignals{process_sp};
|
2014-06-24 03:30:49 +08:00
|
|
|
|
2015-07-14 09:09:28 +08:00
|
|
|
return {};
|
2014-06-24 03:30:49 +08:00
|
|
|
}
|
|
|
|
|
2012-07-28 07:57:19 +08:00
|
|
|
void
|
|
|
|
SBProcess::SendAsyncInterrupt ()
|
|
|
|
{
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
|
|
|
{
|
|
|
|
process_sp->SendAsyncInterrupt ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBThread
|
2010-10-30 12:51:46 +08:00
|
|
|
SBProcess::GetThreadByID (tid_t tid)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-10-30 12:51:46 +08:00
|
|
|
SBThread sb_thread;
|
2012-01-30 10:53:15 +08:00
|
|
|
ThreadSP thread_sp;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock());
|
2015-02-12 00:37:17 +08:00
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
2012-04-06 00:12:35 +08:00
|
|
|
thread_sp = process_sp->GetThreadList().FindThreadByID (tid, can_update);
|
2012-01-30 10:53:15 +08:00
|
|
|
sb_thread.SetThread (thread_sp);
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-10-30 12:51:46 +08:00
|
|
|
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-30 12:51:46 +08:00
|
|
|
if (log)
|
2012-11-30 05:49:15 +08:00
|
|
|
log->Printf ("SBProcess(%p)::GetThreadByID (tid=0x%4.4" PRIx64 ") => SBThread (%p)",
|
2014-04-04 12:06:10 +08:00
|
|
|
static_cast<void*>(process_sp.get()), tid,
|
|
|
|
static_cast<void*>(thread_sp.get()));
|
2010-10-30 12:51:46 +08:00
|
|
|
|
|
|
|
return sb_thread;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2012-07-14 04:18:18 +08:00
|
|
|
SBThread
|
|
|
|
SBProcess::GetThreadByIndexID (uint32_t index_id)
|
|
|
|
{
|
|
|
|
SBThread sb_thread;
|
|
|
|
ThreadSP thread_sp;
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
|
|
|
{
|
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock());
|
2015-02-12 00:37:17 +08:00
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
2012-07-14 04:18:18 +08:00
|
|
|
thread_sp = process_sp->GetThreadList().FindThreadByIndexID (index_id, can_update);
|
|
|
|
sb_thread.SetThread (thread_sp);
|
|
|
|
}
|
|
|
|
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2012-07-14 04:18:18 +08:00
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::GetThreadByID (tid=0x%x) => SBThread (%p)",
|
|
|
|
static_cast<void*>(process_sp.get()), index_id,
|
|
|
|
static_cast<void*>(thread_sp.get()));
|
2012-07-14 04:18:18 +08:00
|
|
|
|
|
|
|
return sb_thread;
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
StateType
|
|
|
|
SBProcess::GetStateFromEvent (const SBEvent &event)
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
StateType ret_val = Process::ProcessEventData::GetStateFromEvent (event.get());
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2010-10-26 11:11:13 +08:00
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess::GetStateFromEvent (event.sp=%p) => %s",
|
|
|
|
static_cast<void*>(event.get()),
|
2010-10-27 07:49:36 +08:00
|
|
|
lldb_private::StateAsCString (ret_val));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
return ret_val;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBProcess::GetRestartedFromEvent (const SBEvent &event)
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
return Process::ProcessEventData::GetRestartedFromEvent (event.get());
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2013-02-09 09:29:05 +08:00
|
|
|
size_t
|
|
|
|
SBProcess::GetNumRestartedReasonsFromEvent (const lldb::SBEvent &event)
|
|
|
|
{
|
|
|
|
return Process::ProcessEventData::GetNumRestartedReasons(event.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
SBProcess::GetRestartedReasonAtIndexFromEvent (const lldb::SBEvent &event, size_t idx)
|
|
|
|
{
|
|
|
|
return Process::ProcessEventData::GetRestartedReasonAtIndex(event.get(), idx);
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBProcess
|
|
|
|
SBProcess::GetProcessFromEvent (const SBEvent &event)
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
SBProcess process(Process::ProcessEventData::GetProcessFromEvent (event.get()));
|
2010-06-09 00:52:24 +08:00
|
|
|
return process;
|
|
|
|
}
|
|
|
|
|
2015-05-15 17:29:09 +08:00
|
|
|
bool
|
|
|
|
SBProcess::GetInterruptedFromEvent (const SBEvent &event)
|
|
|
|
{
|
|
|
|
return Process::ProcessEventData::GetInterruptedFromEvent(event.get());
|
|
|
|
}
|
|
|
|
|
2012-02-08 13:23:15 +08:00
|
|
|
bool
|
|
|
|
SBProcess::EventIsProcessEvent (const SBEvent &event)
|
|
|
|
{
|
2015-03-21 19:11:07 +08:00
|
|
|
return event.GetBroadcasterClass() == SBProcess::GetBroadcasterClass();
|
2012-02-08 13:23:15 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
SBBroadcaster
|
|
|
|
SBProcess::GetBroadcaster () const
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
|
|
|
|
SBBroadcaster broadcaster(process_sp.get(), false);
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::GetBroadcaster () => SBBroadcaster (%p)",
|
|
|
|
static_cast<void*>(process_sp.get()),
|
|
|
|
static_cast<void*>(broadcaster.get()));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return broadcaster;
|
|
|
|
}
|
|
|
|
|
2012-02-16 14:50:00 +08:00
|
|
|
const char *
|
|
|
|
SBProcess::GetBroadcasterClass ()
|
|
|
|
{
|
|
|
|
return Process::GetStaticBroadcasterClass().AsCString();
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
size_t
|
|
|
|
SBProcess::ReadMemory (addr_t addr, void *dst, size_t dst_len, SBError &sb_error)
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
size_t bytes_read = 0;
|
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
|
2010-10-30 12:51:46 +08:00
|
|
|
if (log)
|
2012-11-30 05:49:15 +08:00
|
|
|
log->Printf ("SBProcess(%p)::ReadMemory (addr=0x%" PRIx64 ", dst=%p, dst_len=%" PRIu64 ", SBError (%p))...",
|
2014-04-04 12:06:10 +08:00
|
|
|
static_cast<void*>(process_sp.get()), addr,
|
|
|
|
static_cast<void*>(dst), static_cast<uint64_t>(dst_len),
|
|
|
|
static_cast<void*>(sb_error.get()));
|
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
if (process_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock()))
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
bytes_read = process_sp->ReadMemory (addr, dst, dst_len, sb_error.ref());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-04-06 10:17:47 +08:00
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::ReadMemory() => error: process is running",
|
|
|
|
static_cast<void*>(process_sp.get()));
|
2012-04-06 00:12:35 +08:00
|
|
|
sb_error.SetErrorString("process is running");
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sb_error.SetErrorString ("SBProcess is invalid");
|
|
|
|
}
|
|
|
|
|
2010-10-26 11:11:13 +08:00
|
|
|
if (log)
|
2010-10-29 12:59:35 +08:00
|
|
|
{
|
|
|
|
SBStream sstr;
|
|
|
|
sb_error.GetDescription (sstr);
|
2012-11-30 05:49:15 +08:00
|
|
|
log->Printf ("SBProcess(%p)::ReadMemory (addr=0x%" PRIx64 ", dst=%p, dst_len=%" PRIu64 ", SBError (%p): %s) => %" PRIu64,
|
2014-04-04 12:06:10 +08:00
|
|
|
static_cast<void*>(process_sp.get()), addr,
|
|
|
|
static_cast<void*>(dst), static_cast<uint64_t>(dst_len),
|
|
|
|
static_cast<void*>(sb_error.get()), sstr.GetData(),
|
|
|
|
static_cast<uint64_t>(bytes_read));
|
2010-10-29 12:59:35 +08:00
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return bytes_read;
|
|
|
|
}
|
|
|
|
|
2011-12-15 11:14:23 +08:00
|
|
|
size_t
|
|
|
|
SBProcess::ReadCStringFromMemory (addr_t addr, void *buf, size_t size, lldb::SBError &sb_error)
|
|
|
|
{
|
|
|
|
size_t bytes_read = 0;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2011-12-15 11:14:23 +08:00
|
|
|
{
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock()))
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
bytes_read = process_sp->ReadCStringFromMemory (addr, (char *)buf, size, sb_error.ref());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2012-04-06 10:17:47 +08:00
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::ReadCStringFromMemory() => error: process is running",
|
|
|
|
static_cast<void*>(process_sp.get()));
|
2012-04-06 00:12:35 +08:00
|
|
|
sb_error.SetErrorString("process is running");
|
|
|
|
}
|
2011-12-15 11:14:23 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sb_error.SetErrorString ("SBProcess is invalid");
|
|
|
|
}
|
|
|
|
return bytes_read;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t
|
|
|
|
SBProcess::ReadUnsignedFromMemory (addr_t addr, uint32_t byte_size, lldb::SBError &sb_error)
|
|
|
|
{
|
2012-04-06 00:12:35 +08:00
|
|
|
uint64_t value = 0;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2011-12-15 11:14:23 +08:00
|
|
|
{
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock()))
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
value = process_sp->ReadUnsignedIntegerFromMemory (addr, byte_size, 0, sb_error.ref());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2012-04-06 10:17:47 +08:00
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::ReadUnsignedFromMemory() => error: process is running",
|
|
|
|
static_cast<void*>(process_sp.get()));
|
2012-04-06 00:12:35 +08:00
|
|
|
sb_error.SetErrorString("process is running");
|
|
|
|
}
|
2011-12-15 11:14:23 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sb_error.SetErrorString ("SBProcess is invalid");
|
|
|
|
}
|
2012-04-06 00:12:35 +08:00
|
|
|
return value;
|
2011-12-15 11:14:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
lldb::addr_t
|
|
|
|
SBProcess::ReadPointerFromMemory (addr_t addr, lldb::SBError &sb_error)
|
|
|
|
{
|
|
|
|
lldb::addr_t ptr = LLDB_INVALID_ADDRESS;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2011-12-15 11:14:23 +08:00
|
|
|
{
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock()))
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
ptr = process_sp->ReadPointerFromMemory (addr, sb_error.ref());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2012-04-06 10:17:47 +08:00
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::ReadPointerFromMemory() => error: process is running",
|
|
|
|
static_cast<void*>(process_sp.get()));
|
2012-04-06 00:12:35 +08:00
|
|
|
sb_error.SetErrorString("process is running");
|
|
|
|
}
|
2011-12-15 11:14:23 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sb_error.SetErrorString ("SBProcess is invalid");
|
|
|
|
}
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
size_t
|
|
|
|
SBProcess::WriteMemory (addr_t addr, const void *src, size_t src_len, SBError &sb_error)
|
|
|
|
{
|
|
|
|
size_t bytes_written = 0;
|
|
|
|
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2012-01-30 17:04:36 +08:00
|
|
|
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
|
2010-10-30 12:51:46 +08:00
|
|
|
if (log)
|
2012-11-30 05:49:15 +08:00
|
|
|
log->Printf ("SBProcess(%p)::WriteMemory (addr=0x%" PRIx64 ", src=%p, src_len=%" PRIu64 ", SBError (%p))...",
|
2014-04-04 12:06:10 +08:00
|
|
|
static_cast<void*>(process_sp.get()), addr,
|
|
|
|
static_cast<const void*>(src),
|
|
|
|
static_cast<uint64_t>(src_len),
|
|
|
|
static_cast<void*>(sb_error.get()));
|
2010-10-30 12:51:46 +08:00
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
if (process_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock()))
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
bytes_written = process_sp->WriteMemory (addr, src, src_len, sb_error.ref());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-04-06 10:17:47 +08:00
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::WriteMemory() => error: process is running",
|
|
|
|
static_cast<void*>(process_sp.get()));
|
2012-04-06 00:12:35 +08:00
|
|
|
sb_error.SetErrorString("process is running");
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2010-10-30 12:51:46 +08:00
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
SBStream sstr;
|
|
|
|
sb_error.GetDescription (sstr);
|
2012-11-30 05:49:15 +08:00
|
|
|
log->Printf ("SBProcess(%p)::WriteMemory (addr=0x%" PRIx64 ", src=%p, src_len=%" PRIu64 ", SBError (%p): %s) => %" PRIu64,
|
2014-04-04 12:06:10 +08:00
|
|
|
static_cast<void*>(process_sp.get()), addr,
|
|
|
|
static_cast<const void*>(src),
|
|
|
|
static_cast<uint64_t>(src_len),
|
|
|
|
static_cast<void*>(sb_error.get()), sstr.GetData(),
|
|
|
|
static_cast<uint64_t>(bytes_written));
|
2010-10-30 12:51:46 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return bytes_written;
|
|
|
|
}
|
|
|
|
|
2010-09-20 13:20:02 +08:00
|
|
|
bool
|
|
|
|
SBProcess::GetDescription (SBStream &description)
|
|
|
|
{
|
2011-11-13 14:57:31 +08:00
|
|
|
Stream &strm = description.ref();
|
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-09-20 13:20:02 +08:00
|
|
|
{
|
|
|
|
char path[PATH_MAX];
|
|
|
|
GetTarget().GetExecutable().GetPath (path, sizeof(path));
|
2012-01-30 17:04:36 +08:00
|
|
|
Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer();
|
2010-10-06 11:09:58 +08:00
|
|
|
const char *exe_name = NULL;
|
|
|
|
if (exe_module)
|
|
|
|
exe_name = exe_module->GetFileSpec().GetFilename().AsCString();
|
|
|
|
|
2012-11-30 05:49:15 +08:00
|
|
|
strm.Printf ("SBProcess: pid = %" PRIu64 ", state = %s, threads = %d%s%s",
|
2012-01-30 17:04:36 +08:00
|
|
|
process_sp->GetID(),
|
2011-11-13 14:57:31 +08:00
|
|
|
lldb_private::StateAsCString (GetState()),
|
|
|
|
GetNumThreads(),
|
|
|
|
exe_name ? ", executable = " : "",
|
|
|
|
exe_name ? exe_name : "");
|
2010-09-20 13:20:02 +08:00
|
|
|
}
|
|
|
|
else
|
2011-11-13 14:57:31 +08:00
|
|
|
strm.PutCString ("No value");
|
2010-09-20 13:20:02 +08:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2010-11-04 09:54:29 +08:00
|
|
|
|
2012-05-24 06:34:34 +08:00
|
|
|
uint32_t
|
|
|
|
SBProcess::GetNumSupportedHardwareWatchpoints (lldb::SBError &sb_error) const
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2012-05-24 06:34:34 +08:00
|
|
|
|
|
|
|
uint32_t num = 0;
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
sb_error.SetError(process_sp->GetWatchpointSupportInfo (num));
|
|
|
|
if (log)
|
|
|
|
log->Printf ("SBProcess(%p)::GetNumSupportedHardwareWatchpoints () => %u",
|
2014-04-04 12:06:10 +08:00
|
|
|
static_cast<void*>(process_sp.get()), num);
|
2012-05-24 06:34:34 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sb_error.SetErrorString ("SBProcess is invalid");
|
|
|
|
}
|
|
|
|
return num;
|
|
|
|
}
|
|
|
|
|
2010-11-04 09:54:29 +08:00
|
|
|
uint32_t
|
|
|
|
SBProcess::LoadImage (lldb::SBFileSpec &sb_image_spec, lldb::SBError &sb_error)
|
|
|
|
{
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock()))
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
return process_sp->LoadImage (*sb_image_spec, sb_error.ref());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2012-04-06 10:17:47 +08:00
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::LoadImage() => error: process is running",
|
|
|
|
static_cast<void*>(process_sp.get()));
|
2012-04-06 00:12:35 +08:00
|
|
|
sb_error.SetErrorString("process is running");
|
|
|
|
}
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-11-04 09:54:29 +08:00
|
|
|
return LLDB_INVALID_IMAGE_TOKEN;
|
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2010-11-04 09:54:29 +08:00
|
|
|
lldb::SBError
|
|
|
|
SBProcess::UnloadImage (uint32_t image_token)
|
|
|
|
{
|
|
|
|
lldb::SBError sb_error;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock()))
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
sb_error.SetError (process_sp->UnloadImage (image_token));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2012-04-06 10:17:47 +08:00
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::UnloadImage() => error: process is running",
|
|
|
|
static_cast<void*>(process_sp.get()));
|
2012-04-06 00:12:35 +08:00
|
|
|
sb_error.SetErrorString("process is running");
|
|
|
|
}
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-11-04 09:54:29 +08:00
|
|
|
else
|
|
|
|
sb_error.SetErrorString("invalid process");
|
|
|
|
return sb_error;
|
|
|
|
}
|
2013-11-05 19:00:35 +08:00
|
|
|
|
2014-03-30 02:54:20 +08:00
|
|
|
lldb::SBError
|
|
|
|
SBProcess::SendEventData (const char *event_data)
|
|
|
|
{
|
|
|
|
lldb::SBError sb_error;
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
|
|
|
{
|
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock()))
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (process_sp->GetTarget().GetAPIMutex());
|
|
|
|
sb_error.SetError (process_sp->SendEventData (event_data));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf ("SBProcess(%p)::SendEventData() => error: process is running",
|
|
|
|
static_cast<void*>(process_sp.get()));
|
2014-03-30 02:54:20 +08:00
|
|
|
sb_error.SetErrorString("process is running");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
sb_error.SetErrorString("invalid process");
|
|
|
|
return sb_error;
|
|
|
|
}
|
|
|
|
|
2013-11-05 19:00:35 +08:00
|
|
|
uint32_t
|
2013-11-06 11:07:33 +08:00
|
|
|
SBProcess::GetNumExtendedBacktraceTypes ()
|
2013-11-05 19:00:35 +08:00
|
|
|
{
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp && process_sp->GetSystemRuntime())
|
|
|
|
{
|
|
|
|
SystemRuntime *runtime = process_sp->GetSystemRuntime();
|
2013-11-06 11:07:33 +08:00
|
|
|
return runtime->GetExtendedBacktraceTypes().size();
|
2013-11-05 19:00:35 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
2013-11-06 11:07:33 +08:00
|
|
|
SBProcess::GetExtendedBacktraceTypeAtIndex (uint32_t idx)
|
2013-11-05 19:00:35 +08:00
|
|
|
{
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp && process_sp->GetSystemRuntime())
|
|
|
|
{
|
|
|
|
SystemRuntime *runtime = process_sp->GetSystemRuntime();
|
2013-11-13 07:33:32 +08:00
|
|
|
const std::vector<ConstString> &names = runtime->GetExtendedBacktraceTypes();
|
2013-11-05 19:00:35 +08:00
|
|
|
if (idx < names.size())
|
|
|
|
{
|
|
|
|
return names[idx].AsCString();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
|
|
if (log)
|
2014-04-04 12:06:10 +08:00
|
|
|
log->Printf("SBProcess(%p)::GetExtendedBacktraceTypeAtIndex() => error: requested extended backtrace name out of bounds",
|
|
|
|
static_cast<void*>(process_sp.get()));
|
2013-11-05 19:00:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-09-06 09:33:13 +08:00
|
|
|
|
|
|
|
SBThreadCollection
|
|
|
|
SBProcess::GetHistoryThreads (addr_t addr)
|
|
|
|
{
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
SBThreadCollection threads;
|
|
|
|
if (process_sp)
|
|
|
|
{
|
|
|
|
threads = SBThreadCollection(process_sp->GetHistoryThreads(addr));
|
|
|
|
}
|
|
|
|
return threads;
|
|
|
|
}
|
2014-10-11 09:59:32 +08:00
|
|
|
|
|
|
|
bool
|
|
|
|
SBProcess::IsInstrumentationRuntimePresent(InstrumentationRuntimeType type)
|
|
|
|
{
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (! process_sp)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
InstrumentationRuntimeSP runtime_sp = process_sp->GetInstrumentationRuntime(type);
|
|
|
|
|
|
|
|
if (! runtime_sp.get())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return runtime_sp->IsActive();
|
|
|
|
}
|