[lldb][NFC] Fix all formatting errors in .cpp file headers
Summary:
A *.cpp file header in LLDB (and in LLDB) should like this:
```
//===-- TestUtilities.cpp -------------------------------------------------===//
```
However in LLDB most of our source files have arbitrary changes to this format and
these changes are spreading through LLDB as folks usually just use the existing
source files as templates for their new files (most notably the unnecessary
editor language indicator `-*- C++ -*-` is spreading and in every review
someone is pointing out that this is wrong, resulting in people pointing out that this
is done in the same way in other files).
This patch removes most of these inconsistencies including the editor language indicators,
all the different missing/additional '-' characters, files that center the file name, missing
trailing `===//` (mostly caused by clang-format breaking the line).
Reviewers: aprantl, espindola, jfb, shafik, JDevlieghere
Reviewed By: JDevlieghere
Subscribers: dexonsmith, wuzish, emaste, sdardis, nemanjai, kbarton, MaskRay, atanasyan, arphaman, jfb, abidh, jsji, JDevlieghere, usaxena95, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D73258
2020-01-24 15:23:27 +08:00
|
|
|
//===-- SBProcess.cpp -----------------------------------------------------===//
|
2010-06-09 00:52:24 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2010-06-09 00:52:24 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-06-09 15:44:37 +08:00
|
|
|
#include "lldb/API/SBProcess.h"
|
2019-03-06 08:06:00 +08:00
|
|
|
#include "SBReproducerPrivate.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2013-08-28 20:14:27 +08:00
|
|
|
#include <inttypes.h>
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/lldb-defines.h"
|
|
|
|
#include "lldb/lldb-types.h"
|
|
|
|
|
2010-10-06 11:53:16 +08:00
|
|
|
#include "lldb/Core/Debugger.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"
|
2015-11-21 07:09:11 +08:00
|
|
|
#include "lldb/Core/PluginManager.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Core/StreamFile.h"
|
2020-02-24 23:04:16 +08:00
|
|
|
#include "lldb/Core/StructuredDataImpl.h"
|
2016-06-23 16:35:37 +08:00
|
|
|
#include "lldb/Target/MemoryRegionInfo.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#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"
|
2018-04-18 02:53:35 +08:00
|
|
|
#include "lldb/Utility/Args.h"
|
Move ProcessInfo from Host to Utility.
There are set of classes in Target that describe the parameters of a
process - e.g. it's PID, name, user id, and similar. However, since it
is a bare description of a process and contains no actual functionality,
there's nothing specifically that makes this appropriate for being in
Target -- it could just as well be describing a process on the host, or
some hypothetical virtual process that doesn't even exist.
To cement this, I'm moving these classes to Utility. It's possible that
we can find a better place for it in the future, but as it is neither
Host specific nor Target specific, Utility seems like the most appropriate
place for the time being.
After this there is only 2 remaining references to Target from Host,
which I'll address in a followup.
Differential Revision: https://reviews.llvm.org/D58842
llvm-svn: 355342
2019-03-05 05:51:03 +08:00
|
|
|
#include "lldb/Utility/ProcessInfo.h"
|
2018-08-07 19:07:21 +08:00
|
|
|
#include "lldb/Utility/State.h"
|
2017-02-03 05:39:50 +08:00
|
|
|
#include "lldb/Utility/Stream.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
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"
|
2019-10-15 04:15:28 +08:00
|
|
|
#include "lldb/API/SBFile.h"
|
2012-02-24 13:03:03 +08:00
|
|
|
#include "lldb/API/SBFileSpec.h"
|
2016-06-23 16:35:37 +08:00
|
|
|
#include "lldb/API/SBMemoryRegionInfo.h"
|
|
|
|
#include "lldb/API/SBMemoryRegionInfoList.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"
|
2016-08-19 12:21:48 +08:00
|
|
|
#include "lldb/API/SBStructuredData.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"
|
2017-04-26 16:48:50 +08:00
|
|
|
#include "lldb/API/SBTrace.h"
|
|
|
|
#include "lldb/API/SBTraceOptions.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;
|
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
SBProcess::SBProcess() : m_opaque_wp() {
|
|
|
|
LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBProcess);
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
// SBProcess constructor
|
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
SBProcess::SBProcess(const SBProcess &rhs) : m_opaque_wp(rhs.m_opaque_wp) {
|
|
|
|
LLDB_RECORD_CONSTRUCTOR(SBProcess, (const lldb::SBProcess &), rhs);
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
SBProcess::SBProcess(const lldb::ProcessSP &process_sp)
|
2019-03-06 08:06:00 +08:00
|
|
|
: m_opaque_wp(process_sp) {
|
|
|
|
LLDB_RECORD_CONSTRUCTOR(SBProcess, (const lldb::ProcessSP &), 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) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(const lldb::SBProcess &,
|
|
|
|
SBProcess, operator=,(const lldb::SBProcess &), rhs);
|
|
|
|
|
2010-11-06 07:17:00 +08:00
|
|
|
if (this != &rhs)
|
2012-07-13 04:32:19 +08:00
|
|
|
m_opaque_wp = rhs.m_opaque_wp;
|
2019-04-04 05:31:22 +08:00
|
|
|
return LLDB_RECORD_RESULT(*this);
|
2010-11-06 07:17:00 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
// Destructor
|
2020-02-18 14:57:06 +08:00
|
|
|
SBProcess::~SBProcess() = default;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-02-16 14:50:00 +08:00
|
|
|
const char *SBProcess::GetBroadcasterClassName() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_STATIC_METHOD_NO_ARGS(const char *, SBProcess,
|
|
|
|
GetBroadcasterClassName);
|
|
|
|
|
2012-02-16 14:50:00 +08:00
|
|
|
return Process::GetStaticBroadcasterClass().AsCString();
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-10-27 03:18:04 +08:00
|
|
|
const char *SBProcess::GetPluginName() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(const char *, SBProcess, GetPluginName);
|
|
|
|
|
2012-10-27 03:18:04 +08:00
|
|
|
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>";
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-10-27 03:18:04 +08:00
|
|
|
const char *SBProcess::GetShortPluginName() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(const char *, SBProcess, GetShortPluginName);
|
|
|
|
|
2012-10-27 03:18:04 +08:00
|
|
|
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>";
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-07-13 04:32:19 +08:00
|
|
|
lldb::ProcessSP SBProcess::GetSP() const { return m_opaque_wp.lock(); }
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-01-30 15:41:31 +08:00
|
|
|
void SBProcess::SetSP(const ProcessSP &process_sp) { m_opaque_wp = process_sp; }
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
void SBProcess::Clear() {
|
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(void, SBProcess, Clear);
|
|
|
|
|
|
|
|
m_opaque_wp.reset();
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
bool SBProcess::IsValid() const {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBProcess, IsValid);
|
Add "operator bool" to SB APIs
Summary:
Our python version of the SB API has (the python equivalent of)
operator bool, but the C++ version doesn't.
This is because our python operators are added by modify-python-lldb.py,
which performs postprocessing on the swig-generated interface files.
In this patch, I add the "operator bool" to all SB classes which have an
IsValid method (which is the same logic used by modify-python-lldb.py).
This way, we make the two interfaces more constent, and it allows us to
rely on swig's automatic syntesis of python __nonzero__ methods instead
of doing manual fixups.
Reviewers: zturner, jingham, clayborg, jfb, serge-sans-paille
Subscribers: jdoerfert, lldb-commits
Differential Revision: https://reviews.llvm.org/D58792
llvm-svn: 355824
2019-03-11 21:58:46 +08:00
|
|
|
return this->operator bool();
|
|
|
|
}
|
|
|
|
SBProcess::operator bool() const {
|
|
|
|
LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBProcess, operator bool);
|
2019-03-06 08:06:00 +08:00
|
|
|
|
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
|
|
|
}
|
2016-09-07 04:57:50 +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) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(bool, SBProcess, RemoteLaunch,
|
|
|
|
(const char **, const char **, const char *, const char *,
|
|
|
|
const char *, const char *, uint32_t, bool,
|
|
|
|
lldb::SBError &),
|
|
|
|
argv, envp, stdin_path, stdout_path, stderr_path,
|
|
|
|
working_directory, launch_flags, stop_at_entry, error);
|
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
2012-04-06 10:17:47 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2013-06-29 08:10:32 +08:00
|
|
|
if (process_sp->GetState() == eStateConnected) {
|
2012-04-06 10:17:47 +08:00
|
|
|
if (stop_at_entry)
|
|
|
|
launch_flags |= eLaunchFlagStopAtEntry;
|
2018-11-02 05:05:36 +08:00
|
|
|
ProcessLaunchInfo launch_info(FileSpec(stdin_path), FileSpec(stdout_path),
|
|
|
|
FileSpec(stderr_path),
|
|
|
|
FileSpec(working_directory), launch_flags);
|
2011-03-04 08:31:13 +08:00
|
|
|
Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer();
|
|
|
|
if (exe_module)
|
|
|
|
launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true);
|
2012-01-30 17:04:36 +08:00
|
|
|
if (argv)
|
2016-05-19 13:13:57 +08:00
|
|
|
launch_info.GetArguments().AppendArguments(argv);
|
2012-04-06 10:17:47 +08:00
|
|
|
if (envp)
|
Add Utility/Environment class for handling... environments
Summary:
There was some confusion in the code about how to represent process
environment. Most of the code (ab)used the Args class for this purpose,
but some of it used a more basic StringList class instead. In either
case, the fact that the underlying abstraction did not provide primitive
operations for the typical environment operations meant that even a
simple operation like checking for an environment variable value was
several lines of code.
This patch adds a separate Environment class, which is essentialy a
llvm::StringMap<std::string> in disguise. To standard StringMap
functionality, it adds a couple of new functions, which are specific to
the environment use case:
- (most important) envp conversion for passing into execve() and likes.
Instead of trying to maintain a constantly up-to-date envp view, it
provides a function which creates a envp view on demand, with the
expectation that this will be called as the very last thing before
handing the value to the system function.
- insert(StringRef KeyEqValue) - splits KeyEqValue into (key, value)
pair and inserts it into the environment map.
- compose(value_type KeyValue) - takes a map entry and converts in back
into "KEY=VALUE" representation.
With this interface most of the environment-manipulating code becomes
one-liners. The only tricky part was maintaining compatibility in
SBLaunchInfo, which expects that the environment entries are accessible
by index and that the returned const char* is backed by the launch info
object (random access into maps is hard and the map stores the entry in
a deconstructed form, so we cannot just return a .c_str() value). To
solve this, I have the SBLaunchInfo convert the environment into the
"envp" form, and use it to answer the environment queries. Extra code is
added to make sure the envp version is always in sync.
(This also improves the layering situation as Args was in the Interpreter module
whereas Environment is in Utility.)
Reviewers: zturner, davide, jingham, clayborg
Subscribers: emaste, lldb-commits, mgorny
Differential Revision: https://reviews.llvm.org/D41359
llvm-svn: 322174
2018-01-10 19:57:31 +08:00
|
|
|
launch_info.GetEnvironment() = Environment(envp);
|
2014-04-04 12:06:10 +08:00
|
|
|
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");
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2011-03-04 08:31:13 +08:00
|
|
|
return error.Success();
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
bool SBProcess::RemoteAttachToProcessWithID(lldb::pid_t pid,
|
2013-03-28 07:08:40 +08:00
|
|
|
lldb::SBError &error) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(bool, SBProcess, RemoteAttachToProcessWithID,
|
|
|
|
(lldb::pid_t, lldb::SBError &), pid, error);
|
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2012-01-30 17:04:36 +08:00
|
|
|
if (process_sp->GetState() == eStateConnected) {
|
2014-04-04 12:06:10 +08:00
|
|
|
ProcessAttachInfo attach_info;
|
|
|
|
attach_info.SetProcessID(pid);
|
|
|
|
error.SetError(process_sp->Attach(attach_info));
|
2010-06-09 00:52:24 +08:00
|
|
|
} else {
|
2010-08-27 05:32:51 +08:00
|
|
|
error.SetErrorString(
|
|
|
|
"must be in eStateConnected to call RemoteAttachToProcessWithID");
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
} else {
|
2013-03-28 07:08:40 +08:00
|
|
|
error.SetErrorString("unable to attach pid");
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2016-05-19 13:13:57 +08:00
|
|
|
return error.Success();
|
<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
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2014-04-04 12:06:10 +08:00
|
|
|
uint32_t SBProcess::GetNumThreads() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBProcess, GetNumThreads);
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
uint32_t num_threads = 0;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
2016-09-07 04:57:50 +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
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
|
|
|
num_threads = process_sp->GetThreadList().GetSize(can_update);
|
2012-01-30 15:41:31 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return num_threads;
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBThread SBProcess::GetSelectedThread() const {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBThread, SBProcess,
|
|
|
|
GetSelectedThread);
|
|
|
|
|
2010-10-26 11:11:13 +08:00
|
|
|
SBThread sb_thread;
|
2012-01-30 17:04:36 +08:00
|
|
|
ThreadSP thread_sp;
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
|
|
|
thread_sp = process_sp->GetThreadList().GetSelectedThread();
|
2013-03-28 07:08:40 +08:00
|
|
|
sb_thread.SetThread(thread_sp);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_thread);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBThread SBProcess::CreateOSPluginThread(lldb::tid_t tid,
|
|
|
|
lldb::addr_t context) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBThread, SBProcess, CreateOSPluginThread,
|
|
|
|
(lldb::tid_t, lldb::addr_t), tid, context);
|
|
|
|
|
2012-11-30 05:49:15 +08:00
|
|
|
SBThread sb_thread;
|
|
|
|
ThreadSP thread_sp;
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
2014-04-04 12:06:10 +08:00
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2012-11-17 08:21:04 +08:00
|
|
|
thread_sp = process_sp->CreateOSPluginThread(tid, context);
|
2013-03-28 07:08:40 +08:00
|
|
|
sb_thread.SetThread(thread_sp);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_thread);
|
2012-11-17 08:21:04 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-08-27 05:32:51 +08:00
|
|
|
SBTarget SBProcess::GetTarget() const {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBTarget, SBProcess, GetTarget);
|
|
|
|
|
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) {
|
2010-06-09 00:52:24 +08:00
|
|
|
target_sp = process_sp->GetTarget().shared_from_this();
|
|
|
|
sb_target.SetSP(target_sp);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_target);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
size_t SBProcess::PutSTDIN(const char *src, size_t src_len) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(size_t, SBProcess, PutSTDIN, (const char *, size_t), src,
|
|
|
|
src_len);
|
|
|
|
|
2010-08-27 05:32:51 +08:00
|
|
|
size_t ret_val = 0;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
2017-05-12 12:51:55 +08:00
|
|
|
Status 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
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-10-26 11:11:13 +08:00
|
|
|
return ret_val;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-07-14 04:18:18 +08:00
|
|
|
size_t SBProcess::GetSTDOUT(char *dst, size_t dst_len) const {
|
[lldb/Reproducers] Fix passive replay for (char*, size_t) functions.
Several SB API functions return strings using (char*, size_t) output
arguments. During capture, we serialize an empty string for the char*
because the memory can be uninitialized.
During active replay, we have custom replay redirects that ensure that
we don't override the buffer from which we're reading, but rather write
to a buffer on the heap with the given length. This is sufficient for
the active reproducer use case, where we only care about the side
effects of the API calls, not the values actually returned.
This approach does not not work for passive replay because here we
ignore all the incoming arguments, and re-execute the current function
with the arguments deserialized from the reproducer. This means that
these function will update the deserialized copy of the arguments,
rather than whatever was passed in by the SWIG wrapper.
To solve this problem, this patch extends the reproducer instrumentation
to handle this special case for passive replay. We nog ignore the
replayer in the registry and the incoming char pointer, and instead
reinvoke the current method on the deserialized class, and populate the
output argument.
Differential revision: https://reviews.llvm.org/D77759
2020-04-21 04:20:24 +08:00
|
|
|
LLDB_RECORD_CHAR_PTR_METHOD_CONST(size_t, SBProcess, GetSTDOUT,
|
|
|
|
(char *, size_t), dst, "", dst_len);
|
2019-03-06 08:06:00 +08:00
|
|
|
|
2010-10-31 11:01:06 +08:00
|
|
|
size_t bytes_read = 0;
|
<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
|
|
|
ProcessSP process_sp(GetSP());
|
2012-07-14 04:18:18 +08:00
|
|
|
if (process_sp) {
|
2017-05-12 12:51:55 +08:00
|
|
|
Status error;
|
2012-07-14 04:18:18 +08:00
|
|
|
bytes_read = process_sp->GetSTDOUT(dst, dst_len, error);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2013-03-28 07:08:40 +08:00
|
|
|
return bytes_read;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2013-03-28 07:08:40 +08:00
|
|
|
size_t SBProcess::GetSTDERR(char *dst, size_t dst_len) const {
|
[lldb/Reproducers] Fix passive replay for (char*, size_t) functions.
Several SB API functions return strings using (char*, size_t) output
arguments. During capture, we serialize an empty string for the char*
because the memory can be uninitialized.
During active replay, we have custom replay redirects that ensure that
we don't override the buffer from which we're reading, but rather write
to a buffer on the heap with the given length. This is sufficient for
the active reproducer use case, where we only care about the side
effects of the API calls, not the values actually returned.
This approach does not not work for passive replay because here we
ignore all the incoming arguments, and re-execute the current function
with the arguments deserialized from the reproducer. This means that
these function will update the deserialized copy of the arguments,
rather than whatever was passed in by the SWIG wrapper.
To solve this problem, this patch extends the reproducer instrumentation
to handle this special case for passive replay. We nog ignore the
replayer in the registry and the incoming char pointer, and instead
reinvoke the current method on the deserialized class, and populate the
output argument.
Differential revision: https://reviews.llvm.org/D77759
2020-04-21 04:20:24 +08:00
|
|
|
LLDB_RECORD_CHAR_PTR_METHOD_CONST(size_t, SBProcess, GetSTDERR,
|
|
|
|
(char *, size_t), dst, "", dst_len);
|
2019-03-06 08:06:00 +08:00
|
|
|
|
2012-01-30 10:53:15 +08:00
|
|
|
size_t bytes_read = 0;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
2017-05-12 12:51:55 +08:00
|
|
|
Status error;
|
2012-04-06 00:12:35 +08:00
|
|
|
bytes_read = process_sp->GetSTDERR(dst, dst_len, error);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2013-12-13 08:29:16 +08:00
|
|
|
return bytes_read;
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2013-12-13 08:29:16 +08:00
|
|
|
size_t SBProcess::GetAsyncProfileData(char *dst, size_t dst_len) const {
|
[lldb/Reproducers] Fix passive replay for (char*, size_t) functions.
Several SB API functions return strings using (char*, size_t) output
arguments. During capture, we serialize an empty string for the char*
because the memory can be uninitialized.
During active replay, we have custom replay redirects that ensure that
we don't override the buffer from which we're reading, but rather write
to a buffer on the heap with the given length. This is sufficient for
the active reproducer use case, where we only care about the side
effects of the API calls, not the values actually returned.
This approach does not not work for passive replay because here we
ignore all the incoming arguments, and re-execute the current function
with the arguments deserialized from the reproducer. This means that
these function will update the deserialized copy of the arguments,
rather than whatever was passed in by the SWIG wrapper.
To solve this problem, this patch extends the reproducer instrumentation
to handle this special case for passive replay. We nog ignore the
replayer in the registry and the incoming char pointer, and instead
reinvoke the current method on the deserialized class, and populate the
output argument.
Differential revision: https://reviews.llvm.org/D77759
2020-04-21 04:20:24 +08:00
|
|
|
LLDB_RECORD_CHAR_PTR_METHOD_CONST(size_t, SBProcess, GetAsyncProfileData,
|
|
|
|
(char *, size_t), dst, "", dst_len);
|
2019-03-06 08:06:00 +08:00
|
|
|
|
2013-12-13 08:29:16 +08:00
|
|
|
size_t bytes_read = 0;
|
<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
|
|
|
ProcessSP process_sp(GetSP());
|
2013-12-13 08:29:16 +08:00
|
|
|
if (process_sp) {
|
2017-05-12 12:51:55 +08:00
|
|
|
Status error;
|
2012-01-30 17:04:36 +08:00
|
|
|
bytes_read = process_sp->GetAsyncProfileData(dst, dst_len, error);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2013-12-13 08:29:16 +08:00
|
|
|
return bytes_read;
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2017-04-26 16:48:50 +08:00
|
|
|
lldb::SBTrace SBProcess::StartTrace(SBTraceOptions &options,
|
|
|
|
lldb::SBError &error) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBTrace, SBProcess, StartTrace,
|
|
|
|
(lldb::SBTraceOptions &, lldb::SBError &), options, error);
|
|
|
|
|
2017-04-26 16:48:50 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
error.Clear();
|
|
|
|
SBTrace trace_instance;
|
|
|
|
trace_instance.SetSP(process_sp);
|
|
|
|
lldb::user_id_t uid = LLDB_INVALID_UID;
|
|
|
|
|
|
|
|
if (!process_sp) {
|
|
|
|
error.SetErrorString("invalid process");
|
|
|
|
} else {
|
2017-05-26 19:46:27 +08:00
|
|
|
uid = process_sp->StartTrace(*(options.m_traceoptions_sp), error.ref());
|
2017-04-26 16:48:50 +08:00
|
|
|
trace_instance.SetTraceUID(uid);
|
|
|
|
}
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(trace_instance);
|
2017-04-26 16:48:50 +08:00
|
|
|
}
|
|
|
|
|
2019-10-15 04:15:28 +08:00
|
|
|
void SBProcess::ReportEventState(const SBEvent &event, SBFile out) const {
|
|
|
|
LLDB_RECORD_METHOD_CONST(void, SBProcess, ReportEventState,
|
|
|
|
(const SBEvent &, SBFile), event, out);
|
|
|
|
|
|
|
|
return ReportEventState(event, out.m_opaque_sp);
|
|
|
|
}
|
|
|
|
|
2013-01-09 07:22:42 +08:00
|
|
|
void SBProcess::ReportEventState(const SBEvent &event, FILE *out) const {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST(void, SBProcess, ReportEventState,
|
|
|
|
(const lldb::SBEvent &, FILE *), event, out);
|
2019-10-15 04:15:28 +08:00
|
|
|
FileSP outfile = std::make_shared<NativeFile>(out, false);
|
|
|
|
return ReportEventState(event, outfile);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SBProcess::ReportEventState(const SBEvent &event, FileSP out) const {
|
2019-03-06 08:06:00 +08:00
|
|
|
|
2019-10-15 04:15:28 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST(void, SBProcess, ReportEventState,
|
|
|
|
(const SBEvent &, FileSP), event, out);
|
|
|
|
|
|
|
|
if (!out || !out->IsValid())
|
2013-01-09 07:22:42 +08:00
|
|
|
return;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2013-01-09 07:22:42 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
2019-10-15 04:15:28 +08:00
|
|
|
StreamFile stream(out);
|
2015-05-20 18:15:47 +08:00
|
|
|
const StateType event_state = SBProcess::GetStateFromEvent(event);
|
2019-10-15 04:15:28 +08:00
|
|
|
stream.Printf("Process %" PRIu64 " %s\n",
|
2016-05-19 13:13:57 +08:00
|
|
|
process_sp->GetID(), SBDebugger::StateAsCString(event_state));
|
2015-05-20 18:15:47 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2015-05-20 18:15:47 +08:00
|
|
|
void SBProcess::AppendEventStateReport(const SBEvent &event,
|
|
|
|
SBCommandReturnObject &result) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(void, SBProcess, AppendEventStateReport,
|
|
|
|
(const lldb::SBEvent &, lldb::SBCommandReturnObject &),
|
|
|
|
event, result);
|
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
2016-05-19 13:13:57 +08:00
|
|
|
const StateType event_state = SBProcess::GetStateFromEvent(event);
|
|
|
|
char message[1024];
|
|
|
|
::snprintf(message, sizeof(message), "Process %" PRIu64 " %s\n",
|
|
|
|
process_sp->GetID(), SBDebugger::StateAsCString(event_state));
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
result.AppendMessage(message);
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
bool SBProcess::SetSelectedThread(const SBThread &thread) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(bool, SBProcess, SetSelectedThread,
|
|
|
|
(const lldb::SBThread &), thread);
|
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2012-01-30 17:04:36 +08:00
|
|
|
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;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2013-03-28 07:08:40 +08:00
|
|
|
bool SBProcess::SetSelectedThreadByID(lldb::tid_t tid) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(bool, SBProcess, SetSelectedThreadByID, (lldb::tid_t),
|
|
|
|
tid);
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-10-30 12:51:46 +08:00
|
|
|
bool ret_val = false;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2012-01-30 17:04:36 +08:00
|
|
|
ret_val = process_sp->GetThreadList().SetSelectedThreadByID(tid);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2010-10-26 11:11:13 +08:00
|
|
|
return ret_val;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2013-01-17 01:29:04 +08:00
|
|
|
bool SBProcess::SetSelectedThreadByIndexID(uint32_t index_id) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(bool, SBProcess, SetSelectedThreadByIndexID, (uint32_t),
|
|
|
|
index_id);
|
|
|
|
|
2014-04-04 12:06:10 +08:00
|
|
|
bool ret_val = false;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2013-03-28 07:08:40 +08:00
|
|
|
ret_val = process_sp->GetThreadList().SetSelectedThreadByIndexID(index_id);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-02 06:56:31 +08:00
|
|
|
return ret_val;
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBThread SBProcess::GetThreadAtIndex(size_t index) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBThread, SBProcess, GetThreadAtIndex, (size_t),
|
|
|
|
index);
|
|
|
|
|
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) {
|
2013-12-13 08:29:16 +08:00
|
|
|
Process::StopLocker stop_locker;
|
2016-05-19 13:13:57 +08:00
|
|
|
const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock());
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
2014-10-21 09:00:42 +08:00
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
|
|
|
thread_sp = process_sp->GetThreadList().GetThreadAtIndex(index, can_update);
|
2010-06-09 00:52:24 +08:00
|
|
|
sb_thread.SetThread(thread_sp);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_thread);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
uint32_t SBProcess::GetNumQueues() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBProcess, GetNumQueues);
|
|
|
|
|
2013-12-13 08:29:16 +08:00
|
|
|
uint32_t num_queues = 0;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
2016-05-19 13:13:57 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock())) {
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2015-04-17 13:01:58 +08:00
|
|
|
num_queues = process_sp->GetQueueList().GetSize();
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return num_queues;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2016-05-19 13:13:57 +08:00
|
|
|
SBQueue SBProcess::GetQueueAtIndex(size_t index) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBQueue, SBProcess, GetQueueAtIndex, (size_t),
|
|
|
|
index);
|
|
|
|
|
2014-04-04 12:06:10 +08:00
|
|
|
SBQueue sb_queue;
|
2010-06-09 00:52:24 +08:00
|
|
|
QueueSP queue_sp;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
2016-05-19 13:13:57 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock())) {
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2015-04-17 13:01:58 +08:00
|
|
|
queue_sp = process_sp->GetQueueList().GetQueueAtIndex(index);
|
|
|
|
sb_queue.SetQueue(queue_sp);
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_queue);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2013-01-09 07:22:42 +08:00
|
|
|
uint32_t SBProcess::GetStopID(bool include_expression_stops) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(uint32_t, SBProcess, GetStopID, (bool),
|
|
|
|
include_expression_stops);
|
|
|
|
|
2012-07-14 04:18:18 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2013-01-09 07:22:42 +08:00
|
|
|
if (include_expression_stops)
|
|
|
|
return process_sp->GetStopID();
|
2010-06-09 00:52:24 +08:00
|
|
|
else
|
|
|
|
return process_sp->GetLastNaturalStopID();
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2013-01-09 07:22:42 +08:00
|
|
|
return 0;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBEvent SBProcess::GetStopEventForStopID(uint32_t stop_id) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBEvent, SBProcess, GetStopEventForStopID,
|
|
|
|
(uint32_t), stop_id);
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBEvent sb_event;
|
2015-05-20 18:15:47 +08:00
|
|
|
EventSP event_sp;
|
2012-07-14 04:18:18 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
2010-06-09 00:52:24 +08:00
|
|
|
if (process_sp) {
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2015-05-20 18:15:47 +08:00
|
|
|
event_sp = process_sp->GetStopEventForStopID(stop_id);
|
|
|
|
sb_event.reset(event_sp);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_event);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2010-10-26 11:11:13 +08:00
|
|
|
StateType SBProcess::GetState() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::StateType, SBProcess, GetState);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
StateType ret_val = eStateInvalid;
|
2013-12-13 08:29:16 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
2013-03-28 07:08:40 +08:00
|
|
|
if (process_sp) {
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2012-07-14 04:18:18 +08:00
|
|
|
ret_val = process_sp->GetState();
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2010-10-26 11:11:13 +08:00
|
|
|
return ret_val;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2010-10-26 11:11:13 +08:00
|
|
|
int SBProcess::GetExitStatus() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(int, SBProcess, GetExitStatus);
|
|
|
|
|
2010-10-30 12:51:46 +08:00
|
|
|
int exit_status = 0;
|
2013-12-13 08:29:16 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
2016-05-26 08:08:39 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
2010-10-26 11:11:13 +08:00
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2012-01-30 17:04:36 +08:00
|
|
|
exit_status = process_sp->GetExitStatus();
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2010-10-30 12:51:46 +08:00
|
|
|
return exit_status;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
const char *SBProcess::GetExitDescription() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(const char *, SBProcess, GetExitDescription);
|
|
|
|
|
[lldb] NFC modernize codebase with modernize-use-nullptr
Summary:
NFC = [[ https://llvm.org/docs/Lexicon.html#nfc | Non functional change ]]
This commit is the result of modernizing the LLDB codebase by using
`nullptr` instread of `0` or `NULL`. See
https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-nullptr.html
for more information.
This is the command I ran and I to fix and format the code base:
```
run-clang-tidy.py \
-header-filter='.*' \
-checks='-*,modernize-use-nullptr' \
-fix ~/dev/llvm-project/lldb/.* \
-format \
-style LLVM \
-p ~/llvm-builds/debug-ninja-gcc
```
NOTE: There were also changes to `llvm/utils/unittest` but I did not
include them because I felt that maybe this library shall be updated in
isolation somehow.
NOTE: I know this is a rather large commit but it is a nobrainer in most
parts.
Reviewers: martong, espindola, shafik, #lldb, JDevlieghere
Reviewed By: JDevlieghere
Subscribers: arsenm, jvesely, nhaehnle, hiraditya, JDevlieghere, teemperor, rnkovacs, emaste, kubamracek, nemanjai, ki.stfu, javed.absar, arichardson, kbarton, jrtc27, MaskRay, atanasyan, dexonsmith, arphaman, jfb, jsji, jdoerfert, lldb-commits, llvm-commits
Tags: #lldb, #llvm
Differential Revision: https://reviews.llvm.org/D61847
llvm-svn: 361484
2019-05-23 19:14:47 +08:00
|
|
|
const char *exit_desc = nullptr;
|
2013-12-13 08:29:16 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
2016-05-26 08:08:39 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2010-10-26 11:11:13 +08:00
|
|
|
exit_desc = process_sp->GetExitDescription();
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2010-10-30 12:51:46 +08:00
|
|
|
return exit_desc;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2011-03-04 08:31:13 +08:00
|
|
|
lldb::pid_t SBProcess::GetProcessID() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::pid_t, SBProcess, GetProcessID);
|
|
|
|
|
2014-04-04 12:06:10 +08:00
|
|
|
lldb::pid_t ret_val = LLDB_INVALID_PROCESS_ID;
|
2013-12-13 08:29:16 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp)
|
2012-01-30 17:04:36 +08:00
|
|
|
ret_val = process_sp->GetID();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-10-26 11:11:13 +08:00
|
|
|
return ret_val;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2014-04-04 12:06:10 +08:00
|
|
|
uint32_t SBProcess::GetUniqueID() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBProcess, GetUniqueID);
|
|
|
|
|
2013-01-17 01:29:04 +08:00
|
|
|
uint32_t ret_val = 0;
|
2013-12-13 08:29:16 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
2015-05-20 18:15:47 +08:00
|
|
|
if (process_sp)
|
2013-01-17 01:29:04 +08:00
|
|
|
ret_val = process_sp->GetUniqueID();
|
2010-10-26 11:11:13 +08:00
|
|
|
return ret_val;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2011-03-02 06:56:31 +08:00
|
|
|
ByteOrder SBProcess::GetByteOrder() const {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::ByteOrder, SBProcess, GetByteOrder);
|
|
|
|
|
2011-03-02 06:56:31 +08:00
|
|
|
ByteOrder byteOrder = eByteOrderInvalid;
|
2013-12-13 08:29:16 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
2015-05-20 18:15:47 +08:00
|
|
|
if (process_sp)
|
2012-01-30 17:04:36 +08:00
|
|
|
byteOrder = process_sp->GetTarget().GetArchitecture().GetByteOrder();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
|
|
|
2014-04-04 12:06:10 +08:00
|
|
|
return byteOrder;
|
2010-10-26 11:11:13 +08:00
|
|
|
}
|
|
|
|
|
2011-12-15 11:14:23 +08:00
|
|
|
uint32_t SBProcess::GetAddressByteSize() const {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST_NO_ARGS(uint32_t, SBProcess, GetAddressByteSize);
|
|
|
|
|
2010-10-26 11:11:13 +08:00
|
|
|
uint32_t size = 0;
|
2013-12-13 08:29:16 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
2015-05-20 18:15:47 +08:00
|
|
|
if (process_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
size = process_sp->GetTarget().GetArchitecture().GetAddressByteSize();
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2013-05-02 08:27:30 +08:00
|
|
|
return size;
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2013-05-02 08:27:30 +08:00
|
|
|
SBError SBProcess::Continue() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::SBError, SBProcess, Continue);
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBError sb_error;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
if (process_sp) {
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
if (process_sp->GetTarget().GetDebugger().GetAsyncExecution())
|
|
|
|
sb_error.ref() = process_sp->Resume();
|
2010-06-09 00:52:24 +08:00
|
|
|
else
|
[lldb] NFC modernize codebase with modernize-use-nullptr
Summary:
NFC = [[ https://llvm.org/docs/Lexicon.html#nfc | Non functional change ]]
This commit is the result of modernizing the LLDB codebase by using
`nullptr` instread of `0` or `NULL`. See
https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-nullptr.html
for more information.
This is the command I ran and I to fix and format the code base:
```
run-clang-tidy.py \
-header-filter='.*' \
-checks='-*,modernize-use-nullptr' \
-fix ~/dev/llvm-project/lldb/.* \
-format \
-style LLVM \
-p ~/llvm-builds/debug-ninja-gcc
```
NOTE: There were also changes to `llvm/utils/unittest` but I did not
include them because I felt that maybe this library shall be updated in
isolation somehow.
NOTE: I know this is a rather large commit but it is a nobrainer in most
parts.
Reviewers: martong, espindola, shafik, #lldb, JDevlieghere
Reviewed By: JDevlieghere
Subscribers: arsenm, jvesely, nhaehnle, hiraditya, JDevlieghere, teemperor, rnkovacs, emaste, kubamracek, nemanjai, ki.stfu, javed.absar, arichardson, kbarton, jrtc27, MaskRay, atanasyan, dexonsmith, arphaman, jfb, jsji, jdoerfert, lldb-commits, llvm-commits
Tags: #lldb, #llvm
Differential Revision: https://reviews.llvm.org/D61847
llvm-svn: 361484
2019-05-23 19:14:47 +08:00
|
|
|
sb_error.ref() = process_sp->ResumeSynchronous(nullptr);
|
2016-09-07 04:57:50 +08:00
|
|
|
} else
|
2014-04-04 12:06:10 +08:00
|
|
|
sb_error.SetErrorString("SBProcess is invalid");
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_error);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2011-12-15 11:14:23 +08:00
|
|
|
SBError SBProcess::Destroy() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::SBError, SBProcess, Destroy);
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBError sb_error;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
2013-03-28 07:08:40 +08:00
|
|
|
if (process_sp) {
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2013-05-02 08:27:30 +08:00
|
|
|
sb_error.SetError(process_sp->Destroy(false));
|
2016-09-07 04:57:50 +08:00
|
|
|
} else
|
2010-06-09 00:52:24 +08:00
|
|
|
sb_error.SetErrorString("SBProcess is invalid");
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_error);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2010-10-30 12:51:46 +08:00
|
|
|
SBError SBProcess::Stop() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::SBError, SBProcess, Stop);
|
|
|
|
|
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) {
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2012-01-30 17:04:36 +08:00
|
|
|
sb_error.SetError(process_sp->Halt());
|
2016-09-07 04:57:50 +08:00
|
|
|
} else
|
2010-06-09 00:52:24 +08:00
|
|
|
sb_error.SetErrorString("SBProcess is invalid");
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_error);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2011-12-15 11:14:23 +08:00
|
|
|
SBError SBProcess::Kill() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::SBError, SBProcess, Kill);
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBError sb_error;
|
2013-01-17 01:29:04 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
2010-10-30 12:51:46 +08:00
|
|
|
if (process_sp) {
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2013-05-02 08:27:30 +08:00
|
|
|
sb_error.SetError(process_sp->Destroy(true));
|
2016-09-07 04:57:50 +08:00
|
|
|
} else
|
2010-06-09 00:52:24 +08:00
|
|
|
sb_error.SetErrorString("SBProcess is invalid");
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_error);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2011-03-04 08:31:13 +08:00
|
|
|
SBError SBProcess::Detach() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::SBError, SBProcess, Detach);
|
|
|
|
|
2013-05-02 08:27:30 +08:00
|
|
|
// FIXME: This should come from a process default.
|
|
|
|
bool keep_stopped = false;
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(Detach(keep_stopped));
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2013-05-02 08:27:30 +08:00
|
|
|
SBError SBProcess::Detach(bool keep_stopped) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::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());
|
2014-04-04 12:06:10 +08:00
|
|
|
if (process_sp) {
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2013-05-02 08:27:30 +08:00
|
|
|
sb_error.SetError(process_sp->Detach(keep_stopped));
|
2016-09-07 04:57:50 +08:00
|
|
|
} else
|
2010-06-09 00:52:24 +08:00
|
|
|
sb_error.SetErrorString("SBProcess is invalid");
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_error);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2010-10-30 12:51:46 +08:00
|
|
|
SBError SBProcess::Signal(int signo) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBError, 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) {
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2012-01-30 17:04:36 +08:00
|
|
|
sb_error.SetError(process_sp->Signal(signo));
|
2016-09-07 04:57:50 +08:00
|
|
|
} else
|
2010-06-09 00:52:24 +08:00
|
|
|
sb_error.SetErrorString("SBProcess is invalid");
|
2019-03-08 06:47:13 +08:00
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_error);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2014-06-24 03:30:49 +08:00
|
|
|
SBUnixSignals SBProcess::GetUnixSignals() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::SBUnixSignals, SBProcess, GetUnixSignals);
|
|
|
|
|
2015-07-14 09:09:28 +08:00
|
|
|
if (auto process_sp = GetSP())
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(SBUnixSignals{process_sp});
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(SBUnixSignals{});
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2012-07-28 07:57:19 +08:00
|
|
|
void SBProcess::SendAsyncInterrupt() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(void, SBProcess, SendAsyncInterrupt);
|
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
2012-07-28 07:57:19 +08:00
|
|
|
process_sp->SendAsyncInterrupt();
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-30 12:51:46 +08:00
|
|
|
SBThread SBProcess::GetThreadByID(tid_t tid) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBThread, SBProcess, GetThreadByID, (lldb::tid_t),
|
|
|
|
tid);
|
|
|
|
|
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) {
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock());
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
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-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_thread);
|
2014-06-24 03:30:49 +08:00
|
|
|
}
|
|
|
|
|
2010-10-30 12:51:46 +08:00
|
|
|
SBThread SBProcess::GetThreadByIndexID(uint32_t index_id) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBThread, SBProcess, GetThreadByIndexID, (uint32_t),
|
|
|
|
index_id);
|
|
|
|
|
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) {
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock());
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
2012-04-06 00:12:35 +08:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_thread);
|
2012-07-14 04:18:18 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
StateType SBProcess::GetStateFromEvent(const SBEvent &event) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_STATIC_METHOD(lldb::StateType, SBProcess, GetStateFromEvent,
|
|
|
|
(const lldb::SBEvent &), event);
|
|
|
|
|
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
|
|
|
return ret_val;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SBProcess::GetRestartedFromEvent(const SBEvent &event) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_STATIC_METHOD(bool, SBProcess, GetRestartedFromEvent,
|
|
|
|
(const lldb::SBEvent &), event);
|
|
|
|
|
2016-01-06 01:55:35 +08:00
|
|
|
bool ret_val = Process::ProcessEventData::GetRestartedFromEvent(event.get());
|
|
|
|
|
|
|
|
return ret_val;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2013-02-09 09:29:05 +08:00
|
|
|
size_t SBProcess::GetNumRestartedReasonsFromEvent(const lldb::SBEvent &event) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_STATIC_METHOD(size_t, SBProcess, GetNumRestartedReasonsFromEvent,
|
|
|
|
(const lldb::SBEvent &), event);
|
|
|
|
|
2013-02-09 09:29:05 +08:00
|
|
|
return Process::ProcessEventData::GetNumRestartedReasons(event.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
SBProcess::GetRestartedReasonAtIndexFromEvent(const lldb::SBEvent &event,
|
2015-05-15 17:29:09 +08:00
|
|
|
size_t idx) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_STATIC_METHOD(const char *, SBProcess,
|
|
|
|
GetRestartedReasonAtIndexFromEvent,
|
|
|
|
(const lldb::SBEvent &, size_t), event, idx);
|
|
|
|
|
2016-08-19 12:21:48 +08:00
|
|
|
return Process::ProcessEventData::GetRestartedReasonAtIndex(event.get(), idx);
|
2012-02-08 13:23:15 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
SBProcess SBProcess::GetProcessFromEvent(const SBEvent &event) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_STATIC_METHOD(lldb::SBProcess, SBProcess, GetProcessFromEvent,
|
|
|
|
(const lldb::SBEvent &), event);
|
|
|
|
|
2016-08-19 12:21:48 +08:00
|
|
|
ProcessSP process_sp =
|
2013-03-28 07:08:40 +08:00
|
|
|
Process::ProcessEventData::GetProcessFromEvent(event.get());
|
|
|
|
if (!process_sp) {
|
2018-05-01 00:49:04 +08:00
|
|
|
// StructuredData events also know the process they come from. Try that.
|
2016-08-19 12:21:48 +08:00
|
|
|
process_sp = EventDataStructuredData::GetProcessFromEvent(event.get());
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(SBProcess(process_sp));
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2012-02-16 14:50:00 +08:00
|
|
|
bool SBProcess::GetInterruptedFromEvent(const SBEvent &event) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_STATIC_METHOD(bool, SBProcess, GetInterruptedFromEvent,
|
|
|
|
(const lldb::SBEvent &), event);
|
|
|
|
|
2012-02-16 14:50:00 +08:00
|
|
|
return Process::ProcessEventData::GetInterruptedFromEvent(event.get());
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
lldb::SBStructuredData
|
|
|
|
SBProcess::GetStructuredDataFromEvent(const lldb::SBEvent &event) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_STATIC_METHOD(lldb::SBStructuredData, SBProcess,
|
|
|
|
GetStructuredDataFromEvent, (const lldb::SBEvent &),
|
|
|
|
event);
|
|
|
|
|
|
|
|
return LLDB_RECORD_RESULT(SBStructuredData(event.GetSP()));
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
bool SBProcess::EventIsProcessEvent(const SBEvent &event) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_STATIC_METHOD(bool, SBProcess, EventIsProcessEvent,
|
|
|
|
(const lldb::SBEvent &), event);
|
|
|
|
|
2012-11-30 05:49:15 +08:00
|
|
|
return (event.GetBroadcasterClass() == SBProcess::GetBroadcasterClass()) &&
|
|
|
|
!EventIsStructuredDataEvent(event);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2014-04-04 12:06:10 +08:00
|
|
|
bool SBProcess::EventIsStructuredDataEvent(const lldb::SBEvent &event) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_STATIC_METHOD(bool, SBProcess, EventIsStructuredDataEvent,
|
|
|
|
(const lldb::SBEvent &), event);
|
|
|
|
|
2014-04-04 12:06:10 +08:00
|
|
|
EventSP event_sp = event.GetSP();
|
2016-05-19 13:13:57 +08:00
|
|
|
EventData *event_data = event_sp ? event_sp->GetData() : nullptr;
|
2016-08-19 12:21:48 +08:00
|
|
|
return event_data && (event_data->GetFlavor() ==
|
2016-05-19 13:13:57 +08:00
|
|
|
EventDataStructuredData::GetFlavorString());
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2016-05-19 13:13:57 +08:00
|
|
|
SBBroadcaster SBProcess::GetBroadcaster() const {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBBroadcaster, SBProcess,
|
|
|
|
GetBroadcaster);
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-04-06 00:12:35 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2014-04-04 12:06:10 +08:00
|
|
|
SBBroadcaster broadcaster(process_sp.get(), false);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(broadcaster);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2014-04-04 12:06:10 +08:00
|
|
|
const char *SBProcess::GetBroadcasterClass() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_STATIC_METHOD_NO_ARGS(const char *, SBProcess,
|
|
|
|
GetBroadcasterClass);
|
|
|
|
|
2014-04-04 12:06:10 +08:00
|
|
|
return Process::GetStaticBroadcasterClass().AsCString();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2011-12-15 11:14:23 +08:00
|
|
|
size_t SBProcess::ReadMemory(addr_t addr, void *dst, size_t dst_len,
|
|
|
|
SBError &sb_error) {
|
2019-03-09 03:09:27 +08:00
|
|
|
LLDB_RECORD_DUMMY(size_t, SBProcess, ReadMemory,
|
|
|
|
(lldb::addr_t, void *, size_t, lldb::SBError &), addr, dst,
|
|
|
|
dst_len, sb_error);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2013-03-28 07:08:40 +08:00
|
|
|
size_t bytes_read = 0;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-07-28 07:57:19 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
if (process_sp) {
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock())) {
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2012-04-06 00:12:35 +08:00
|
|
|
bytes_read = process_sp->ReadMemory(addr, dst, dst_len, sb_error.ref());
|
|
|
|
} else {
|
|
|
|
sb_error.SetErrorString("process is running");
|
|
|
|
}
|
2011-12-15 11:14:23 +08:00
|
|
|
} else {
|
|
|
|
sb_error.SetErrorString("SBProcess is invalid");
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2016-05-19 13:13:57 +08:00
|
|
|
return bytes_read;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2012-04-06 00:12:35 +08:00
|
|
|
size_t SBProcess::ReadCStringFromMemory(addr_t addr, void *buf, size_t size,
|
|
|
|
lldb::SBError &sb_error) {
|
2019-03-09 03:09:27 +08:00
|
|
|
LLDB_RECORD_DUMMY(size_t, SBProcess, ReadCStringFromMemory,
|
|
|
|
(lldb::addr_t, void *, size_t, lldb::SBError &), addr, buf,
|
|
|
|
size, sb_error);
|
|
|
|
|
2012-04-06 00:12:35 +08:00
|
|
|
size_t bytes_read = 0;
|
|
|
|
ProcessSP process_sp(GetSP());
|
2012-04-06 10:17:47 +08:00
|
|
|
if (process_sp) {
|
2014-04-04 12:06:10 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock())) {
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2010-06-09 00:52:24 +08:00
|
|
|
bytes_read = process_sp->ReadCStringFromMemory(addr, (char *)buf, size,
|
|
|
|
sb_error.ref());
|
|
|
|
} else {
|
2014-04-04 12:06:10 +08:00
|
|
|
sb_error.SetErrorString("process is running");
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
} else {
|
2014-04-04 12:06:10 +08:00
|
|
|
sb_error.SetErrorString("SBProcess is invalid");
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
return bytes_read;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2011-12-15 11:14:23 +08:00
|
|
|
uint64_t SBProcess::ReadUnsignedFromMemory(addr_t addr, uint32_t byte_size,
|
|
|
|
lldb::SBError &sb_error) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(uint64_t, SBProcess, ReadUnsignedFromMemory,
|
|
|
|
(lldb::addr_t, uint32_t, lldb::SBError &), addr, byte_size,
|
|
|
|
sb_error);
|
|
|
|
|
2012-04-06 00:12:35 +08:00
|
|
|
uint64_t value = 0;
|
2012-07-14 04:18:18 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
2012-01-30 17:04:36 +08:00
|
|
|
if (process_sp) {
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock())) {
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
2012-04-06 00:12:35 +08:00
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2014-04-04 12:06:10 +08:00
|
|
|
value = process_sp->ReadUnsignedIntegerFromMemory(addr, byte_size, 0,
|
2012-04-06 00:12:35 +08:00
|
|
|
sb_error.ref());
|
2016-09-07 04:57:50 +08:00
|
|
|
} else {
|
2014-04-04 12:06:10 +08:00
|
|
|
sb_error.SetErrorString("process is running");
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
} else {
|
2014-04-04 12:06:10 +08:00
|
|
|
sb_error.SetErrorString("SBProcess is invalid");
|
2010-10-30 12:51:46 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
return value;
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-09-20 13:20:02 +08:00
|
|
|
lldb::addr_t SBProcess::ReadPointerFromMemory(addr_t addr,
|
|
|
|
lldb::SBError &sb_error) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::addr_t, SBProcess, ReadPointerFromMemory,
|
|
|
|
(lldb::addr_t, lldb::SBError &), addr, sb_error);
|
|
|
|
|
2011-11-13 14:57:31 +08:00
|
|
|
lldb::addr_t ptr = LLDB_INVALID_ADDRESS;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
2010-09-20 13:20:02 +08:00
|
|
|
Process::StopLocker stop_locker;
|
2012-01-30 17:04:36 +08:00
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock())) {
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2012-05-24 06:34:34 +08:00
|
|
|
ptr = process_sp->ReadPointerFromMemory(addr, sb_error.ref());
|
|
|
|
} else {
|
2012-04-06 00:12:35 +08:00
|
|
|
sb_error.SetErrorString("process is running");
|
2012-05-24 06:34:34 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
sb_error.SetErrorString("SBProcess is invalid");
|
|
|
|
}
|
|
|
|
return ptr;
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-12-08 21:43:59 +08:00
|
|
|
size_t SBProcess::WriteMemory(addr_t addr, const void *src, size_t src_len,
|
|
|
|
SBError &sb_error) {
|
2019-03-09 03:09:27 +08:00
|
|
|
LLDB_RECORD_DUMMY(size_t, SBProcess, WriteMemory,
|
|
|
|
(lldb::addr_t, const void *, size_t, lldb::SBError &), addr,
|
|
|
|
src, src_len, sb_error);
|
|
|
|
|
2015-12-08 21:43:59 +08:00
|
|
|
size_t bytes_written = 0;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
if (process_sp) {
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock())) {
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2015-12-02 19:58:51 +08:00
|
|
|
bytes_written =
|
2015-12-08 21:43:59 +08:00
|
|
|
process_sp->WriteMemory(addr, src, src_len, sb_error.ref());
|
2012-04-06 00:12:35 +08:00
|
|
|
} else {
|
|
|
|
sb_error.SetErrorString("process is running");
|
2010-11-04 09:54:29 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2010-11-04 09:54:29 +08:00
|
|
|
return bytes_written;
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2014-03-30 02:54:20 +08:00
|
|
|
bool SBProcess::GetDescription(SBStream &description) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(bool, SBProcess, GetDescription, (lldb::SBStream &),
|
|
|
|
description);
|
|
|
|
|
2014-03-30 02:54:20 +08:00
|
|
|
Stream &strm = description.ref();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2014-03-30 02:54:20 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
|
|
|
char path[PATH_MAX];
|
2016-05-19 13:13:57 +08:00
|
|
|
GetTarget().GetExecutable().GetPath(path, sizeof(path));
|
|
|
|
Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer();
|
[lldb] NFC modernize codebase with modernize-use-nullptr
Summary:
NFC = [[ https://llvm.org/docs/Lexicon.html#nfc | Non functional change ]]
This commit is the result of modernizing the LLDB codebase by using
`nullptr` instread of `0` or `NULL`. See
https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-nullptr.html
for more information.
This is the command I ran and I to fix and format the code base:
```
run-clang-tidy.py \
-header-filter='.*' \
-checks='-*,modernize-use-nullptr' \
-fix ~/dev/llvm-project/lldb/.* \
-format \
-style LLVM \
-p ~/llvm-builds/debug-ninja-gcc
```
NOTE: There were also changes to `llvm/utils/unittest` but I did not
include them because I felt that maybe this library shall be updated in
isolation somehow.
NOTE: I know this is a rather large commit but it is a nobrainer in most
parts.
Reviewers: martong, espindola, shafik, #lldb, JDevlieghere
Reviewed By: JDevlieghere
Subscribers: arsenm, jvesely, nhaehnle, hiraditya, JDevlieghere, teemperor, rnkovacs, emaste, kubamracek, nemanjai, ki.stfu, javed.absar, arichardson, kbarton, jrtc27, MaskRay, atanasyan, dexonsmith, arphaman, jfb, jsji, jdoerfert, lldb-commits, llvm-commits
Tags: #lldb, #llvm
Differential Revision: https://reviews.llvm.org/D61847
llvm-svn: 361484
2019-05-23 19:14:47 +08:00
|
|
|
const char *exe_name = nullptr;
|
2014-03-30 02:54:20 +08:00
|
|
|
if (exe_module)
|
|
|
|
exe_name = exe_module->GetFileSpec().GetFilename().AsCString();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2014-04-04 12:06:10 +08:00
|
|
|
strm.Printf("SBProcess: pid = %" PRIu64 ", state = %s, threads = %d%s%s",
|
|
|
|
process_sp->GetID(), lldb_private::StateAsCString(GetState()),
|
2014-03-30 02:54:20 +08:00
|
|
|
GetNumThreads(), exe_name ? ", executable = " : "",
|
|
|
|
exe_name ? exe_name : "");
|
|
|
|
} else
|
|
|
|
strm.PutCString("No value");
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2014-03-30 02:54:20 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-24 23:04:16 +08:00
|
|
|
SBStructuredData SBProcess::GetExtendedCrashInformation() {
|
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::SBStructuredData, SBProcess,
|
|
|
|
GetExtendedCrashInformation);
|
|
|
|
SBStructuredData data;
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (!process_sp)
|
|
|
|
return LLDB_RECORD_RESULT(data);
|
|
|
|
|
|
|
|
PlatformSP platform_sp = process_sp->GetTarget().GetPlatform();
|
|
|
|
|
|
|
|
if (!platform_sp)
|
|
|
|
return LLDB_RECORD_RESULT(data);
|
|
|
|
|
|
|
|
auto expected_data =
|
|
|
|
platform_sp->FetchExtendedCrashInformation(*process_sp.get());
|
|
|
|
|
|
|
|
if (!expected_data)
|
|
|
|
return LLDB_RECORD_RESULT(data);
|
|
|
|
|
|
|
|
StructuredData::ObjectSP fetched_data = *expected_data;
|
|
|
|
data.m_impl_up->SetObjectSP(fetched_data);
|
|
|
|
return LLDB_RECORD_RESULT(data);
|
|
|
|
}
|
|
|
|
|
2013-11-05 19:00:35 +08:00
|
|
|
uint32_t
|
2012-05-24 06:34:34 +08:00
|
|
|
SBProcess::GetNumSupportedHardwareWatchpoints(lldb::SBError &sb_error) const {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST(uint32_t, SBProcess,
|
|
|
|
GetNumSupportedHardwareWatchpoints,
|
|
|
|
(lldb::SBError &), sb_error);
|
|
|
|
|
2012-05-24 06:34:34 +08:00
|
|
|
uint32_t num = 0;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2012-05-24 06:34:34 +08:00
|
|
|
sb_error.SetError(process_sp->GetWatchpointSupportInfo(num));
|
2016-09-07 04:57:50 +08:00
|
|
|
} else {
|
2010-06-09 00:52:24 +08:00
|
|
|
sb_error.SetErrorString("SBProcess is invalid");
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
return num;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2015-12-08 21:43:59 +08:00
|
|
|
uint32_t SBProcess::LoadImage(lldb::SBFileSpec &sb_remote_image_spec,
|
2011-12-15 11:14:23 +08:00
|
|
|
lldb::SBError &sb_error) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(uint32_t, SBProcess, LoadImage,
|
|
|
|
(lldb::SBFileSpec &, lldb::SBError &),
|
|
|
|
sb_remote_image_spec, sb_error);
|
|
|
|
|
2015-12-08 21:43:59 +08:00
|
|
|
return LoadImage(SBFileSpec(), sb_remote_image_spec, sb_error);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2015-12-08 21:43:59 +08:00
|
|
|
uint32_t SBProcess::LoadImage(const lldb::SBFileSpec &sb_local_image_spec,
|
|
|
|
const lldb::SBFileSpec &sb_remote_image_spec,
|
2011-12-15 11:14:23 +08:00
|
|
|
lldb::SBError &sb_error) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(
|
|
|
|
uint32_t, SBProcess, LoadImage,
|
|
|
|
(const lldb::SBFileSpec &, const lldb::SBFileSpec &, lldb::SBError &),
|
|
|
|
sb_local_image_spec, sb_remote_image_spec, sb_error);
|
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock())) {
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
2017-05-06 09:15:47 +08:00
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2015-12-02 19:58:51 +08:00
|
|
|
PlatformSP platform_sp = process_sp->GetTarget().GetPlatform();
|
2015-12-08 21:43:59 +08:00
|
|
|
return platform_sp->LoadImage(process_sp.get(), *sb_local_image_spec,
|
|
|
|
*sb_remote_image_spec, sb_error.ref());
|
2016-09-07 04:57:50 +08:00
|
|
|
} else {
|
2012-04-06 00:12:35 +08:00
|
|
|
sb_error.SetErrorString("process is running");
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2019-03-08 06:47:13 +08:00
|
|
|
} else {
|
2017-05-06 09:15:47 +08:00
|
|
|
sb_error.SetErrorString("process is invalid");
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2010-11-04 09:54:29 +08:00
|
|
|
return LLDB_INVALID_IMAGE_TOKEN;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2018-06-29 04:02:11 +08:00
|
|
|
uint32_t SBProcess::LoadImageUsingPaths(const lldb::SBFileSpec &image_spec,
|
|
|
|
SBStringList &paths,
|
2019-03-06 08:06:00 +08:00
|
|
|
lldb::SBFileSpec &loaded_path,
|
2018-06-29 04:02:11 +08:00
|
|
|
lldb::SBError &error) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(uint32_t, SBProcess, LoadImageUsingPaths,
|
|
|
|
(const lldb::SBFileSpec &, lldb::SBStringList &,
|
|
|
|
lldb::SBFileSpec &, lldb::SBError &),
|
|
|
|
image_spec, paths, loaded_path, error);
|
|
|
|
|
2018-06-29 04:02:11 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock())) {
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
|
|
|
PlatformSP platform_sp = process_sp->GetTarget().GetPlatform();
|
|
|
|
size_t num_paths = paths.GetSize();
|
|
|
|
std::vector<std::string> paths_vec;
|
|
|
|
paths_vec.reserve(num_paths);
|
|
|
|
for (size_t i = 0; i < num_paths; i++)
|
|
|
|
paths_vec.push_back(paths.GetStringAtIndex(i));
|
|
|
|
FileSpec loaded_spec;
|
2019-03-08 06:47:13 +08:00
|
|
|
|
|
|
|
uint32_t token = platform_sp->LoadImageUsingPaths(
|
|
|
|
process_sp.get(), *image_spec, paths_vec, error.ref(), &loaded_spec);
|
|
|
|
if (token != LLDB_INVALID_IMAGE_TOKEN)
|
|
|
|
loaded_path = loaded_spec;
|
|
|
|
return token;
|
2018-06-29 04:02:11 +08:00
|
|
|
} else {
|
|
|
|
error.SetErrorString("process is running");
|
|
|
|
}
|
2019-03-08 06:47:13 +08:00
|
|
|
} else {
|
2018-06-29 04:02:11 +08:00
|
|
|
error.SetErrorString("process is invalid");
|
|
|
|
}
|
2019-03-08 06:47:13 +08:00
|
|
|
|
2018-06-29 04:02:11 +08:00
|
|
|
return LLDB_INVALID_IMAGE_TOKEN;
|
|
|
|
}
|
|
|
|
|
2010-11-04 09:54:29 +08:00
|
|
|
lldb::SBError SBProcess::UnloadImage(uint32_t image_token) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBError, SBProcess, UnloadImage, (uint32_t),
|
|
|
|
image_token);
|
|
|
|
|
2010-11-04 09:54:29 +08:00
|
|
|
lldb::SBError sb_error;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock())) {
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2015-12-02 19:58:51 +08:00
|
|
|
PlatformSP platform_sp = process_sp->GetTarget().GetPlatform();
|
2010-06-09 00:52:24 +08:00
|
|
|
sb_error.SetError(
|
2015-12-02 19:58:51 +08:00
|
|
|
platform_sp->UnloadImage(process_sp.get(), image_token));
|
2016-09-07 04:57:50 +08:00
|
|
|
} else {
|
2012-04-06 00:12:35 +08:00
|
|
|
sb_error.SetErrorString("process is running");
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
} else
|
2010-06-09 00:52:24 +08:00
|
|
|
sb_error.SetErrorString("invalid process");
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_error);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2016-08-19 12:21:48 +08:00
|
|
|
lldb::SBError SBProcess::SendEventData(const char *event_data) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBError, SBProcess, SendEventData, (const char *),
|
|
|
|
event_data);
|
|
|
|
|
2010-11-04 09:54:29 +08:00
|
|
|
lldb::SBError sb_error;
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock())) {
|
2016-05-19 13:13:57 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2014-03-30 02:54:20 +08:00
|
|
|
sb_error.SetError(process_sp->SendEventData(event_data));
|
2016-09-07 04:57:50 +08:00
|
|
|
} else {
|
2012-04-06 00:12:35 +08:00
|
|
|
sb_error.SetErrorString("process is running");
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
} else
|
2011-12-15 11:14:23 +08:00
|
|
|
sb_error.SetErrorString("invalid process");
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_error);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2013-11-06 11:07:33 +08:00
|
|
|
uint32_t SBProcess::GetNumExtendedBacktraceTypes() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(uint32_t, 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;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2013-11-06 11:07:33 +08:00
|
|
|
const char *SBProcess::GetExtendedBacktraceTypeAtIndex(uint32_t idx) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(const char *, SBProcess, GetExtendedBacktraceTypeAtIndex,
|
|
|
|
(uint32_t), idx);
|
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
2013-11-05 19:00:35 +08:00
|
|
|
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();
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
}
|
[lldb] NFC modernize codebase with modernize-use-nullptr
Summary:
NFC = [[ https://llvm.org/docs/Lexicon.html#nfc | Non functional change ]]
This commit is the result of modernizing the LLDB codebase by using
`nullptr` instread of `0` or `NULL`. See
https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-nullptr.html
for more information.
This is the command I ran and I to fix and format the code base:
```
run-clang-tidy.py \
-header-filter='.*' \
-checks='-*,modernize-use-nullptr' \
-fix ~/dev/llvm-project/lldb/.* \
-format \
-style LLVM \
-p ~/llvm-builds/debug-ninja-gcc
```
NOTE: There were also changes to `llvm/utils/unittest` but I did not
include them because I felt that maybe this library shall be updated in
isolation somehow.
NOTE: I know this is a rather large commit but it is a nobrainer in most
parts.
Reviewers: martong, espindola, shafik, #lldb, JDevlieghere
Reviewed By: JDevlieghere
Subscribers: arsenm, jvesely, nhaehnle, hiraditya, JDevlieghere, teemperor, rnkovacs, emaste, kubamracek, nemanjai, ki.stfu, javed.absar, arichardson, kbarton, jrtc27, MaskRay, atanasyan, dexonsmith, arphaman, jfb, jsji, jdoerfert, lldb-commits, llvm-commits
Tags: #lldb, #llvm
Differential Revision: https://reviews.llvm.org/D61847
llvm-svn: 361484
2019-05-23 19:14:47 +08:00
|
|
|
return nullptr;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2014-09-06 09:33:13 +08:00
|
|
|
SBThreadCollection SBProcess::GetHistoryThreads(addr_t addr) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBThreadCollection, SBProcess, GetHistoryThreads,
|
|
|
|
(lldb::addr_t), addr);
|
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
2014-09-06 09:33:13 +08:00
|
|
|
SBThreadCollection threads;
|
2012-01-30 17:04:36 +08:00
|
|
|
if (process_sp) {
|
2014-09-06 09:33:13 +08:00
|
|
|
threads = SBThreadCollection(process_sp->GetHistoryThreads(addr));
|
2013-11-05 19:00:35 +08:00
|
|
|
}
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(threads);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2014-10-11 09:59:32 +08:00
|
|
|
bool SBProcess::IsInstrumentationRuntimePresent(
|
|
|
|
InstrumentationRuntimeType type) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(bool, SBProcess, IsInstrumentationRuntimePresent,
|
|
|
|
(lldb::InstrumentationRuntimeType), type);
|
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
2016-08-19 12:21:48 +08:00
|
|
|
if (!process_sp)
|
2014-10-11 09:59:32 +08:00
|
|
|
return false;
|
2013-11-05 19:00:35 +08:00
|
|
|
|
2019-10-04 17:54:58 +08:00
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
|
|
|
|
2013-11-05 19:00:35 +08:00
|
|
|
InstrumentationRuntimeSP runtime_sp =
|
|
|
|
process_sp->GetInstrumentationRuntime(type);
|
2014-09-06 09:33:13 +08:00
|
|
|
|
|
|
|
if (!runtime_sp.get())
|
|
|
|
return false;
|
2014-10-11 09:59:32 +08:00
|
|
|
|
|
|
|
return runtime_sp->IsActive();
|
|
|
|
}
|
2015-11-21 07:09:11 +08:00
|
|
|
|
|
|
|
lldb::SBError SBProcess::SaveCore(const char *file_name) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBError, SBProcess, SaveCore, (const char *),
|
|
|
|
file_name);
|
|
|
|
|
2015-11-21 07:09:11 +08:00
|
|
|
lldb::SBError error;
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (!process_sp) {
|
|
|
|
error.SetErrorString("SBProcess is invalid");
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(error);
|
2015-11-21 07:09:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
|
|
|
|
|
|
|
if (process_sp->GetState() != eStateStopped) {
|
|
|
|
error.SetErrorString("the process is not stopped");
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(error);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2018-11-02 05:05:36 +08:00
|
|
|
FileSpec core_file(file_name);
|
2015-11-21 07:09:11 +08:00
|
|
|
error.ref() = PluginManager::SaveCore(process_sp, core_file);
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(error);
|
2015-11-21 07:09:11 +08:00
|
|
|
}
|
2016-06-23 16:35:37 +08:00
|
|
|
|
|
|
|
lldb::SBError
|
|
|
|
SBProcess::GetMemoryRegionInfo(lldb::addr_t load_addr,
|
|
|
|
SBMemoryRegionInfo &sb_region_info) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBError, SBProcess, GetMemoryRegionInfo,
|
|
|
|
(lldb::addr_t, lldb::SBMemoryRegionInfo &), load_addr,
|
|
|
|
sb_region_info);
|
|
|
|
|
2016-06-23 16:35:37 +08:00
|
|
|
lldb::SBError sb_error;
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
if (process_sp) {
|
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock())) {
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
2018-12-20 23:02:58 +08:00
|
|
|
|
2016-06-23 16:35:37 +08:00
|
|
|
sb_error.ref() =
|
2018-12-20 23:02:58 +08:00
|
|
|
process_sp->GetMemoryRegionInfo(load_addr, sb_region_info.ref());
|
2016-06-23 16:35:37 +08:00
|
|
|
} else {
|
|
|
|
sb_error.SetErrorString("process is running");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
sb_error.SetErrorString("SBProcess is invalid");
|
|
|
|
}
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_error);
|
2016-06-23 16:35:37 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2016-06-23 16:35:37 +08:00
|
|
|
lldb::SBMemoryRegionInfoList SBProcess::GetMemoryRegions() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::SBMemoryRegionInfoList, SBProcess,
|
|
|
|
GetMemoryRegions);
|
|
|
|
|
2016-06-23 16:35:37 +08:00
|
|
|
lldb::SBMemoryRegionInfoList sb_region_list;
|
2018-12-20 23:02:58 +08:00
|
|
|
|
2016-06-23 16:35:37 +08:00
|
|
|
ProcessSP process_sp(GetSP());
|
2018-12-20 23:02:58 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (process_sp && stop_locker.TryLock(&process_sp->GetRunLock())) {
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(
|
|
|
|
process_sp->GetTarget().GetAPIMutex());
|
|
|
|
|
|
|
|
process_sp->GetMemoryRegions(sb_region_list.ref());
|
2016-06-23 16:35:37 +08:00
|
|
|
}
|
2018-12-20 23:02:58 +08:00
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_region_list);
|
2016-06-23 16:35:37 +08:00
|
|
|
}
|
2017-08-01 15:34:26 +08:00
|
|
|
|
|
|
|
lldb::SBProcessInfo SBProcess::GetProcessInfo() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::SBProcessInfo, SBProcess, GetProcessInfo);
|
|
|
|
|
2017-08-01 15:34:26 +08:00
|
|
|
lldb::SBProcessInfo sb_proc_info;
|
|
|
|
ProcessSP process_sp(GetSP());
|
|
|
|
ProcessInstanceInfo proc_info;
|
|
|
|
if (process_sp && process_sp->GetProcessInfo(proc_info)) {
|
|
|
|
sb_proc_info.SetProcessInfo(proc_info);
|
|
|
|
}
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_proc_info);
|
2017-08-01 15:34:26 +08:00
|
|
|
}
|
2019-03-20 01:13:13 +08:00
|
|
|
|
|
|
|
namespace lldb_private {
|
|
|
|
namespace repro {
|
|
|
|
|
|
|
|
template <>
|
|
|
|
void RegisterMethods<SBProcess>(Registry &R) {
|
|
|
|
LLDB_REGISTER_CONSTRUCTOR(SBProcess, ());
|
|
|
|
LLDB_REGISTER_CONSTRUCTOR(SBProcess, (const lldb::SBProcess &));
|
|
|
|
LLDB_REGISTER_CONSTRUCTOR(SBProcess, (const lldb::ProcessSP &));
|
|
|
|
LLDB_REGISTER_METHOD(const lldb::SBProcess &,
|
|
|
|
SBProcess, operator=,(const lldb::SBProcess &));
|
|
|
|
LLDB_REGISTER_STATIC_METHOD(const char *, SBProcess,
|
|
|
|
GetBroadcasterClassName, ());
|
|
|
|
LLDB_REGISTER_METHOD(const char *, SBProcess, GetPluginName, ());
|
|
|
|
LLDB_REGISTER_METHOD(const char *, SBProcess, GetShortPluginName, ());
|
|
|
|
LLDB_REGISTER_METHOD(void, SBProcess, Clear, ());
|
|
|
|
LLDB_REGISTER_METHOD_CONST(bool, SBProcess, IsValid, ());
|
|
|
|
LLDB_REGISTER_METHOD_CONST(bool, SBProcess, operator bool, ());
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBProcess, RemoteLaunch,
|
|
|
|
(const char **, const char **, const char *,
|
|
|
|
const char *, const char *, const char *, uint32_t,
|
|
|
|
bool, lldb::SBError &));
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBProcess, RemoteAttachToProcessWithID,
|
|
|
|
(lldb::pid_t, lldb::SBError &));
|
|
|
|
LLDB_REGISTER_METHOD(uint32_t, SBProcess, GetNumThreads, ());
|
|
|
|
LLDB_REGISTER_METHOD_CONST(lldb::SBThread, SBProcess, GetSelectedThread,
|
|
|
|
());
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBThread, SBProcess, CreateOSPluginThread,
|
|
|
|
(lldb::tid_t, lldb::addr_t));
|
|
|
|
LLDB_REGISTER_METHOD_CONST(lldb::SBTarget, SBProcess, GetTarget, ());
|
|
|
|
LLDB_REGISTER_METHOD(size_t, SBProcess, PutSTDIN, (const char *, size_t));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBTrace, SBProcess, StartTrace,
|
|
|
|
(lldb::SBTraceOptions &, lldb::SBError &));
|
|
|
|
LLDB_REGISTER_METHOD_CONST(void, SBProcess, ReportEventState,
|
|
|
|
(const lldb::SBEvent &, FILE *));
|
2019-10-15 04:15:28 +08:00
|
|
|
LLDB_REGISTER_METHOD_CONST(void, SBProcess, ReportEventState,
|
|
|
|
(const lldb::SBEvent &, FileSP));
|
|
|
|
LLDB_REGISTER_METHOD_CONST(void, SBProcess, ReportEventState,
|
|
|
|
(const lldb::SBEvent &, SBFile));
|
2019-03-20 01:13:13 +08:00
|
|
|
LLDB_REGISTER_METHOD(
|
|
|
|
void, SBProcess, AppendEventStateReport,
|
|
|
|
(const lldb::SBEvent &, lldb::SBCommandReturnObject &));
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBProcess, SetSelectedThread,
|
|
|
|
(const lldb::SBThread &));
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBProcess, SetSelectedThreadByID, (lldb::tid_t));
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBProcess, SetSelectedThreadByIndexID,
|
|
|
|
(uint32_t));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBThread, SBProcess, GetThreadAtIndex, (size_t));
|
|
|
|
LLDB_REGISTER_METHOD(uint32_t, SBProcess, GetNumQueues, ());
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBQueue, SBProcess, GetQueueAtIndex, (size_t));
|
|
|
|
LLDB_REGISTER_METHOD(uint32_t, SBProcess, GetStopID, (bool));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBEvent, SBProcess, GetStopEventForStopID,
|
|
|
|
(uint32_t));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::StateType, SBProcess, GetState, ());
|
|
|
|
LLDB_REGISTER_METHOD(int, SBProcess, GetExitStatus, ());
|
|
|
|
LLDB_REGISTER_METHOD(const char *, SBProcess, GetExitDescription, ());
|
|
|
|
LLDB_REGISTER_METHOD(lldb::pid_t, SBProcess, GetProcessID, ());
|
|
|
|
LLDB_REGISTER_METHOD(uint32_t, SBProcess, GetUniqueID, ());
|
|
|
|
LLDB_REGISTER_METHOD_CONST(lldb::ByteOrder, SBProcess, GetByteOrder, ());
|
|
|
|
LLDB_REGISTER_METHOD_CONST(uint32_t, SBProcess, GetAddressByteSize, ());
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Continue, ());
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Destroy, ());
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Stop, ());
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Kill, ());
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Detach, ());
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Detach, (bool));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Signal, (int));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBUnixSignals, SBProcess, GetUnixSignals, ());
|
|
|
|
LLDB_REGISTER_METHOD(void, SBProcess, SendAsyncInterrupt, ());
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBThread, SBProcess, GetThreadByID,
|
|
|
|
(lldb::tid_t));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBThread, SBProcess, GetThreadByIndexID,
|
|
|
|
(uint32_t));
|
|
|
|
LLDB_REGISTER_STATIC_METHOD(lldb::StateType, SBProcess, GetStateFromEvent,
|
|
|
|
(const lldb::SBEvent &));
|
|
|
|
LLDB_REGISTER_STATIC_METHOD(bool, SBProcess, GetRestartedFromEvent,
|
|
|
|
(const lldb::SBEvent &));
|
|
|
|
LLDB_REGISTER_STATIC_METHOD(size_t, SBProcess,
|
|
|
|
GetNumRestartedReasonsFromEvent,
|
|
|
|
(const lldb::SBEvent &));
|
|
|
|
LLDB_REGISTER_STATIC_METHOD(const char *, SBProcess,
|
|
|
|
GetRestartedReasonAtIndexFromEvent,
|
|
|
|
(const lldb::SBEvent &, size_t));
|
|
|
|
LLDB_REGISTER_STATIC_METHOD(lldb::SBProcess, SBProcess, GetProcessFromEvent,
|
|
|
|
(const lldb::SBEvent &));
|
|
|
|
LLDB_REGISTER_STATIC_METHOD(bool, SBProcess, GetInterruptedFromEvent,
|
|
|
|
(const lldb::SBEvent &));
|
|
|
|
LLDB_REGISTER_STATIC_METHOD(lldb::SBStructuredData, SBProcess,
|
|
|
|
GetStructuredDataFromEvent,
|
|
|
|
(const lldb::SBEvent &));
|
|
|
|
LLDB_REGISTER_STATIC_METHOD(bool, SBProcess, EventIsProcessEvent,
|
|
|
|
(const lldb::SBEvent &));
|
|
|
|
LLDB_REGISTER_STATIC_METHOD(bool, SBProcess, EventIsStructuredDataEvent,
|
|
|
|
(const lldb::SBEvent &));
|
|
|
|
LLDB_REGISTER_METHOD_CONST(lldb::SBBroadcaster, SBProcess, GetBroadcaster,
|
|
|
|
());
|
|
|
|
LLDB_REGISTER_STATIC_METHOD(const char *, SBProcess, GetBroadcasterClass,
|
|
|
|
());
|
|
|
|
LLDB_REGISTER_METHOD(uint64_t, SBProcess, ReadUnsignedFromMemory,
|
|
|
|
(lldb::addr_t, uint32_t, lldb::SBError &));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::addr_t, SBProcess, ReadPointerFromMemory,
|
|
|
|
(lldb::addr_t, lldb::SBError &));
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBProcess, GetDescription, (lldb::SBStream &));
|
2020-02-24 23:04:16 +08:00
|
|
|
LLDB_REGISTER_METHOD(lldb::SBStructuredData, SBProcess,
|
|
|
|
GetExtendedCrashInformation, ());
|
2019-03-20 01:13:13 +08:00
|
|
|
LLDB_REGISTER_METHOD_CONST(uint32_t, SBProcess,
|
|
|
|
GetNumSupportedHardwareWatchpoints,
|
|
|
|
(lldb::SBError &));
|
|
|
|
LLDB_REGISTER_METHOD(uint32_t, SBProcess, LoadImage,
|
|
|
|
(lldb::SBFileSpec &, lldb::SBError &));
|
|
|
|
LLDB_REGISTER_METHOD(
|
|
|
|
uint32_t, SBProcess, LoadImage,
|
|
|
|
(const lldb::SBFileSpec &, const lldb::SBFileSpec &, lldb::SBError &));
|
|
|
|
LLDB_REGISTER_METHOD(uint32_t, SBProcess, LoadImageUsingPaths,
|
|
|
|
(const lldb::SBFileSpec &, lldb::SBStringList &,
|
|
|
|
lldb::SBFileSpec &, lldb::SBError &));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, UnloadImage, (uint32_t));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, SendEventData,
|
|
|
|
(const char *));
|
|
|
|
LLDB_REGISTER_METHOD(uint32_t, SBProcess, GetNumExtendedBacktraceTypes, ());
|
|
|
|
LLDB_REGISTER_METHOD(const char *, SBProcess,
|
|
|
|
GetExtendedBacktraceTypeAtIndex, (uint32_t));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBThreadCollection, SBProcess, GetHistoryThreads,
|
|
|
|
(lldb::addr_t));
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBProcess, IsInstrumentationRuntimePresent,
|
|
|
|
(lldb::InstrumentationRuntimeType));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, SaveCore, (const char *));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, GetMemoryRegionInfo,
|
|
|
|
(lldb::addr_t, lldb::SBMemoryRegionInfo &));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBMemoryRegionInfoList, SBProcess,
|
|
|
|
GetMemoryRegions, ());
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBProcessInfo, SBProcess, GetProcessInfo, ());
|
2020-02-06 11:41:09 +08:00
|
|
|
|
[lldb/Reproducers] Fix passive replay for (char*, size_t) functions.
Several SB API functions return strings using (char*, size_t) output
arguments. During capture, we serialize an empty string for the char*
because the memory can be uninitialized.
During active replay, we have custom replay redirects that ensure that
we don't override the buffer from which we're reading, but rather write
to a buffer on the heap with the given length. This is sufficient for
the active reproducer use case, where we only care about the side
effects of the API calls, not the values actually returned.
This approach does not not work for passive replay because here we
ignore all the incoming arguments, and re-execute the current function
with the arguments deserialized from the reproducer. This means that
these function will update the deserialized copy of the arguments,
rather than whatever was passed in by the SWIG wrapper.
To solve this problem, this patch extends the reproducer instrumentation
to handle this special case for passive replay. We nog ignore the
replayer in the registry and the incoming char pointer, and instead
reinvoke the current method on the deserialized class, and populate the
output argument.
Differential revision: https://reviews.llvm.org/D77759
2020-04-21 04:20:24 +08:00
|
|
|
LLDB_REGISTER_CHAR_PTR_METHOD_CONST(size_t, SBProcess, GetSTDOUT);
|
|
|
|
LLDB_REGISTER_CHAR_PTR_METHOD_CONST(size_t, SBProcess, GetSTDERR);
|
|
|
|
LLDB_REGISTER_CHAR_PTR_METHOD_CONST(size_t, SBProcess, GetAsyncProfileData);
|
2019-03-20 01:13:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|