[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
|
|
|
//===-- SBThread.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/SBThread.h"
|
2019-03-06 08:06:00 +08:00
|
|
|
#include "SBReproducerPrivate.h"
|
2019-03-06 08:05:55 +08:00
|
|
|
#include "Utils.h"
|
|
|
|
#include "lldb/API/SBAddress.h"
|
|
|
|
#include "lldb/API/SBDebugger.h"
|
|
|
|
#include "lldb/API/SBEvent.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/API/SBFileSpec.h"
|
2019-03-06 08:05:55 +08:00
|
|
|
#include "lldb/API/SBFrame.h"
|
|
|
|
#include "lldb/API/SBProcess.h"
|
2010-09-20 13:20:02 +08:00
|
|
|
#include "lldb/API/SBStream.h"
|
2019-10-04 06:50:18 +08:00
|
|
|
#include "lldb/API/SBStructuredData.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/API/SBSymbolContext.h"
|
2019-03-06 08:05:55 +08:00
|
|
|
#include "lldb/API/SBThreadCollection.h"
|
|
|
|
#include "lldb/API/SBThreadPlan.h"
|
|
|
|
#include "lldb/API/SBValue.h"
|
2010-11-19 02:52:36 +08:00
|
|
|
#include "lldb/Breakpoint/BreakpointLocation.h"
|
2010-06-23 09:19:29 +08:00
|
|
|
#include "lldb/Core/Debugger.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Core/StreamFile.h"
|
2019-10-04 06:50:18 +08:00
|
|
|
#include "lldb/Core/StructuredDataImpl.h"
|
2015-03-04 07:11:11 +08:00
|
|
|
#include "lldb/Core/ValueObject.h"
|
2010-06-23 09:19:29 +08:00
|
|
|
#include "lldb/Interpreter/CommandInterpreter.h"
|
2015-03-04 05:51:25 +08:00
|
|
|
#include "lldb/Symbol/CompileUnit.h"
|
2013-11-06 08:04:44 +08:00
|
|
|
#include "lldb/Symbol/SymbolContext.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Target/Process.h"
|
2014-04-25 08:01:15 +08:00
|
|
|
#include "lldb/Target/Queue.h"
|
2010-08-04 09:40:35 +08:00
|
|
|
#include "lldb/Target/StopInfo.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Target/SystemRuntime.h"
|
|
|
|
#include "lldb/Target/Target.h"
|
|
|
|
#include "lldb/Target/Thread.h"
|
|
|
|
#include "lldb/Target/ThreadPlan.h"
|
|
|
|
#include "lldb/Target/ThreadPlanStepInRange.h"
|
|
|
|
#include "lldb/Target/ThreadPlanStepInstruction.h"
|
|
|
|
#include "lldb/Target/ThreadPlanStepOut.h"
|
|
|
|
#include "lldb/Target/ThreadPlanStepRange.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"
|
2017-06-27 18:45:31 +08:00
|
|
|
#include "lldb/Utility/StructuredData.h"
|
2017-05-29 16:25:46 +08:00
|
|
|
#include "lldb/lldb-enumerations.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2019-02-12 07:13:08 +08:00
|
|
|
#include <memory>
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
2012-10-11 02:32:14 +08:00
|
|
|
const char *SBThread::GetBroadcasterClassName() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_STATIC_METHOD_NO_ARGS(const char *, SBThread,
|
|
|
|
GetBroadcasterClassName);
|
|
|
|
|
2012-10-11 02:32:14 +08:00
|
|
|
return Thread::GetStaticBroadcasterClass().AsCString();
|
|
|
|
}
|
|
|
|
|
2010-10-31 11:01:06 +08:00
|
|
|
// Constructors
|
2019-03-06 08:06:00 +08:00
|
|
|
SBThread::SBThread() : m_opaque_sp(new ExecutionContextRef()) {
|
|
|
|
LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBThread);
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
SBThread::SBThread(const ThreadSP &lldb_object_sp)
|
2019-03-06 08:06:00 +08:00
|
|
|
: m_opaque_sp(new ExecutionContextRef(lldb_object_sp)) {
|
|
|
|
LLDB_RECORD_CONSTRUCTOR(SBThread, (const lldb::ThreadSP &), lldb_object_sp);
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2019-03-06 08:05:55 +08:00
|
|
|
SBThread::SBThread(const SBThread &rhs) : m_opaque_sp() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_CONSTRUCTOR(SBThread, (const lldb::SBThread &), rhs);
|
|
|
|
|
2019-03-06 08:05:55 +08:00
|
|
|
m_opaque_sp = clone(rhs.m_opaque_sp);
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2010-10-31 11:01:06 +08:00
|
|
|
// Assignment operator
|
|
|
|
|
|
|
|
const lldb::SBThread &SBThread::operator=(const SBThread &rhs) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(const lldb::SBThread &,
|
|
|
|
SBThread, operator=,(const lldb::SBThread &), rhs);
|
|
|
|
|
2010-10-31 11:01:06 +08:00
|
|
|
if (this != &rhs)
|
2019-03-06 08:05:55 +08:00
|
|
|
m_opaque_sp = clone(rhs.m_opaque_sp);
|
2019-04-04 05:31:22 +08:00
|
|
|
return LLDB_RECORD_RESULT(*this);
|
2010-10-31 11:01:06 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
// Destructor
|
2020-02-18 14:57:06 +08:00
|
|
|
SBThread::~SBThread() = default;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2014-04-25 08:01:15 +08:00
|
|
|
lldb::SBQueue SBThread::GetQueue() const {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBQueue, SBThread, GetQueue);
|
|
|
|
|
2014-04-25 08:01:15 +08:00
|
|
|
SBQueue sb_queue;
|
|
|
|
QueueSP queue_sp;
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2014-04-25 08:01:15 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
queue_sp = exe_ctx.GetThreadPtr()->GetQueue();
|
|
|
|
if (queue_sp) {
|
|
|
|
sb_queue.SetQueue(queue_sp);
|
|
|
|
}
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2014-04-25 08:01:15 +08:00
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_queue);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2010-07-31 04:12:55 +08:00
|
|
|
bool SBThread::IsValid() const {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBThread, 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();
|
|
|
|
}
|
|
|
|
SBThread::operator bool() const {
|
|
|
|
LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBThread, operator bool);
|
2019-03-06 08:06:00 +08:00
|
|
|
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-04-06 00:12:35 +08:00
|
|
|
Target *target = exe_ctx.GetTargetPtr();
|
2016-05-07 08:54:56 +08:00
|
|
|
Process *process = exe_ctx.GetProcessPtr();
|
|
|
|
if (target && process) {
|
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process->GetRunLock()))
|
[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 m_opaque_sp->GetThreadSP().get() != nullptr;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2016-05-07 08:54:56 +08:00
|
|
|
// Without a valid target & process, this thread can't be valid.
|
|
|
|
return false;
|
2010-07-31 04:12:55 +08:00
|
|
|
}
|
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
void SBThread::Clear() {
|
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(void, SBThread, Clear);
|
|
|
|
|
|
|
|
m_opaque_sp->Clear();
|
|
|
|
}
|
2010-07-31 04:12:55 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
StopReason SBThread::GetStopReason() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::StopReason, SBThread, GetStopReason);
|
|
|
|
|
2010-10-26 11:11:13 +08:00
|
|
|
StopReason reason = eStopReasonInvalid;
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2012-08-23 05:34:33 +08:00
|
|
|
|
2012-02-21 08:09:25 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
2012-09-25 10:40:06 +08:00
|
|
|
return exe_ctx.GetThreadPtr()->GetStopReason();
|
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 reason;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2010-11-19 02:52:36 +08:00
|
|
|
size_t SBThread::GetStopReasonDataCount() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(size_t, SBThread, GetStopReasonDataCount);
|
|
|
|
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-02-21 08:09:25 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
StopInfoSP stop_info_sp = exe_ctx.GetThreadPtr()->GetStopInfo();
|
|
|
|
if (stop_info_sp) {
|
|
|
|
StopReason reason = stop_info_sp->GetStopReason();
|
|
|
|
switch (reason) {
|
|
|
|
case eStopReasonInvalid:
|
|
|
|
case eStopReasonNone:
|
|
|
|
case eStopReasonTrace:
|
2012-12-05 08:16:59 +08:00
|
|
|
case eStopReasonExec:
|
2012-04-06 00:12:35 +08:00
|
|
|
case eStopReasonPlanComplete:
|
2012-12-21 07:08:03 +08:00
|
|
|
case eStopReasonThreadExiting:
|
LLDB AddressSanitizer instrumentation runtime plugin, breakpint on error and report data extraction
Reviewed at http://reviews.llvm.org/D5592
This patch gives LLDB some ability to interact with AddressSanitizer runtime library, on top of what we already have (historical memory stack traces provided by ASan). Namely, that's the ability to stop on an error caught by ASan, and access the report information that are associated with it. The report information is also exposed into SB API.
More precisely this patch...
adds a new plugin type, InstrumentationRuntime, which should serve as a generic superclass for other instrumentation runtime libraries, these plugins get notified when modules are loaded, so they get a chance to "activate" when a specific dynamic library is loaded
an instance of this plugin type, AddressSanitizerRuntime, which activates itself when it sees the ASan dynamic library or founds ASan statically linked in the executable
adds a collection of these plugins into the Process class
AddressSanitizerRuntime sets an internal breakpoint on __asan::AsanDie(), and when this breakpoint gets hit, it retrieves the report information from ASan
this breakpoint is then exposed as a new StopReason, eStopReasonInstrumentation, with a new StopInfo subclass, InstrumentationRuntimeStopInfo
the StopInfo superclass is extended with a m_extended_info field (it's a StructuredData::ObjectSP), that can hold arbitrary JSON-like data, which is the way the new plugin provides the report data
the "thread info" command now accepts a "-s" flag that prints out the JSON data of a stop reason (same way the "-j" flag works now)
SBThread has a new API, GetStopReasonExtendedInfoAsJSON, which dumps the JSON string into a SBStream
adds a test case for all of this
I plan to also get rid of the original ASan plugin (memory history stack traces) and use an instance of AddressSanitizerRuntime for that purpose.
Kuba
llvm-svn: 219546
2014-10-11 07:43:03 +08:00
|
|
|
case eStopReasonInstrumentation:
|
2012-04-06 00:12:35 +08:00
|
|
|
// There is no data for these stop reasons.
|
|
|
|
return 0;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-04-06 00:12:35 +08:00
|
|
|
case eStopReasonBreakpoint: {
|
|
|
|
break_id_t site_id = stop_info_sp->GetValue();
|
|
|
|
lldb::BreakpointSiteSP bp_site_sp(
|
|
|
|
exe_ctx.GetProcessPtr()->GetBreakpointSiteList().FindByID(
|
|
|
|
site_id));
|
|
|
|
if (bp_site_sp)
|
|
|
|
return bp_site_sp->GetNumberOfOwners() * 2;
|
|
|
|
else
|
|
|
|
return 0; // Breakpoint must have cleared itself...
|
|
|
|
} break;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-04-06 00:12:35 +08:00
|
|
|
case eStopReasonWatchpoint:
|
|
|
|
return 1;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-04-06 00:12:35 +08:00
|
|
|
case eStopReasonSignal:
|
|
|
|
return 1;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-04-06 00:12:35 +08:00
|
|
|
case eStopReasonException:
|
|
|
|
return 1;
|
2012-04-06 10:17:47 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2010-11-19 02:52:36 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2010-11-19 02:52:36 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t SBThread::GetStopReasonDataAtIndex(uint32_t idx) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(uint64_t, SBThread, GetStopReasonDataAtIndex, (uint32_t),
|
|
|
|
idx);
|
|
|
|
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-02-21 08:09:25 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
|
|
|
StopInfoSP stop_info_sp = thread->GetStopInfo();
|
|
|
|
if (stop_info_sp) {
|
|
|
|
StopReason reason = stop_info_sp->GetStopReason();
|
|
|
|
switch (reason) {
|
|
|
|
case eStopReasonInvalid:
|
|
|
|
case eStopReasonNone:
|
|
|
|
case eStopReasonTrace:
|
2012-12-05 08:16:59 +08:00
|
|
|
case eStopReasonExec:
|
2012-04-06 00:12:35 +08:00
|
|
|
case eStopReasonPlanComplete:
|
2012-12-21 07:08:03 +08:00
|
|
|
case eStopReasonThreadExiting:
|
LLDB AddressSanitizer instrumentation runtime plugin, breakpint on error and report data extraction
Reviewed at http://reviews.llvm.org/D5592
This patch gives LLDB some ability to interact with AddressSanitizer runtime library, on top of what we already have (historical memory stack traces provided by ASan). Namely, that's the ability to stop on an error caught by ASan, and access the report information that are associated with it. The report information is also exposed into SB API.
More precisely this patch...
adds a new plugin type, InstrumentationRuntime, which should serve as a generic superclass for other instrumentation runtime libraries, these plugins get notified when modules are loaded, so they get a chance to "activate" when a specific dynamic library is loaded
an instance of this plugin type, AddressSanitizerRuntime, which activates itself when it sees the ASan dynamic library or founds ASan statically linked in the executable
adds a collection of these plugins into the Process class
AddressSanitizerRuntime sets an internal breakpoint on __asan::AsanDie(), and when this breakpoint gets hit, it retrieves the report information from ASan
this breakpoint is then exposed as a new StopReason, eStopReasonInstrumentation, with a new StopInfo subclass, InstrumentationRuntimeStopInfo
the StopInfo superclass is extended with a m_extended_info field (it's a StructuredData::ObjectSP), that can hold arbitrary JSON-like data, which is the way the new plugin provides the report data
the "thread info" command now accepts a "-s" flag that prints out the JSON data of a stop reason (same way the "-j" flag works now)
SBThread has a new API, GetStopReasonExtendedInfoAsJSON, which dumps the JSON string into a SBStream
adds a test case for all of this
I plan to also get rid of the original ASan plugin (memory history stack traces) and use an instance of AddressSanitizerRuntime for that purpose.
Kuba
llvm-svn: 219546
2014-10-11 07:43:03 +08:00
|
|
|
case eStopReasonInstrumentation:
|
2012-04-06 00:12:35 +08:00
|
|
|
// There is no data for these stop reasons.
|
|
|
|
return 0;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-04-06 00:12:35 +08:00
|
|
|
case eStopReasonBreakpoint: {
|
|
|
|
break_id_t site_id = stop_info_sp->GetValue();
|
|
|
|
lldb::BreakpointSiteSP bp_site_sp(
|
|
|
|
exe_ctx.GetProcessPtr()->GetBreakpointSiteList().FindByID(
|
|
|
|
site_id));
|
|
|
|
if (bp_site_sp) {
|
|
|
|
uint32_t bp_index = idx / 2;
|
|
|
|
BreakpointLocationSP bp_loc_sp(
|
|
|
|
bp_site_sp->GetOwnerAtIndex(bp_index));
|
|
|
|
if (bp_loc_sp) {
|
|
|
|
if (idx & 1) {
|
|
|
|
// Odd idx, return the breakpoint location ID
|
|
|
|
return bp_loc_sp->GetID();
|
2010-11-19 02:52:36 +08:00
|
|
|
} else {
|
2012-04-06 00:12:35 +08:00
|
|
|
// Even idx, return the breakpoint ID
|
|
|
|
return bp_loc_sp->GetBreakpoint().GetID();
|
|
|
|
}
|
2010-11-19 02:52:36 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2012-02-21 08:09:25 +08:00
|
|
|
return LLDB_INVALID_BREAK_ID;
|
2016-09-07 04:57:50 +08:00
|
|
|
} break;
|
|
|
|
|
2012-04-06 00:12:35 +08:00
|
|
|
case eStopReasonWatchpoint:
|
|
|
|
return stop_info_sp->GetValue();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-04-06 00:12:35 +08:00
|
|
|
case eStopReasonSignal:
|
|
|
|
return stop_info_sp->GetValue();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-04-06 00:12:35 +08:00
|
|
|
case eStopReasonException:
|
|
|
|
return stop_info_sp->GetValue();
|
2010-11-19 02:52:36 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2010-11-19 02:52:36 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2010-11-19 02:52:36 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
LLDB AddressSanitizer instrumentation runtime plugin, breakpint on error and report data extraction
Reviewed at http://reviews.llvm.org/D5592
This patch gives LLDB some ability to interact with AddressSanitizer runtime library, on top of what we already have (historical memory stack traces provided by ASan). Namely, that's the ability to stop on an error caught by ASan, and access the report information that are associated with it. The report information is also exposed into SB API.
More precisely this patch...
adds a new plugin type, InstrumentationRuntime, which should serve as a generic superclass for other instrumentation runtime libraries, these plugins get notified when modules are loaded, so they get a chance to "activate" when a specific dynamic library is loaded
an instance of this plugin type, AddressSanitizerRuntime, which activates itself when it sees the ASan dynamic library or founds ASan statically linked in the executable
adds a collection of these plugins into the Process class
AddressSanitizerRuntime sets an internal breakpoint on __asan::AsanDie(), and when this breakpoint gets hit, it retrieves the report information from ASan
this breakpoint is then exposed as a new StopReason, eStopReasonInstrumentation, with a new StopInfo subclass, InstrumentationRuntimeStopInfo
the StopInfo superclass is extended with a m_extended_info field (it's a StructuredData::ObjectSP), that can hold arbitrary JSON-like data, which is the way the new plugin provides the report data
the "thread info" command now accepts a "-s" flag that prints out the JSON data of a stop reason (same way the "-j" flag works now)
SBThread has a new API, GetStopReasonExtendedInfoAsJSON, which dumps the JSON string into a SBStream
adds a test case for all of this
I plan to also get rid of the original ASan plugin (memory history stack traces) and use an instance of AddressSanitizerRuntime for that purpose.
Kuba
llvm-svn: 219546
2014-10-11 07:43:03 +08:00
|
|
|
bool SBThread::GetStopReasonExtendedInfoAsJSON(lldb::SBStream &stream) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(bool, SBThread, GetStopReasonExtendedInfoAsJSON,
|
|
|
|
(lldb::SBStream &), stream);
|
|
|
|
|
LLDB AddressSanitizer instrumentation runtime plugin, breakpint on error and report data extraction
Reviewed at http://reviews.llvm.org/D5592
This patch gives LLDB some ability to interact with AddressSanitizer runtime library, on top of what we already have (historical memory stack traces provided by ASan). Namely, that's the ability to stop on an error caught by ASan, and access the report information that are associated with it. The report information is also exposed into SB API.
More precisely this patch...
adds a new plugin type, InstrumentationRuntime, which should serve as a generic superclass for other instrumentation runtime libraries, these plugins get notified when modules are loaded, so they get a chance to "activate" when a specific dynamic library is loaded
an instance of this plugin type, AddressSanitizerRuntime, which activates itself when it sees the ASan dynamic library or founds ASan statically linked in the executable
adds a collection of these plugins into the Process class
AddressSanitizerRuntime sets an internal breakpoint on __asan::AsanDie(), and when this breakpoint gets hit, it retrieves the report information from ASan
this breakpoint is then exposed as a new StopReason, eStopReasonInstrumentation, with a new StopInfo subclass, InstrumentationRuntimeStopInfo
the StopInfo superclass is extended with a m_extended_info field (it's a StructuredData::ObjectSP), that can hold arbitrary JSON-like data, which is the way the new plugin provides the report data
the "thread info" command now accepts a "-s" flag that prints out the JSON data of a stop reason (same way the "-j" flag works now)
SBThread has a new API, GetStopReasonExtendedInfoAsJSON, which dumps the JSON string into a SBStream
adds a test case for all of this
I plan to also get rid of the original ASan plugin (memory history stack traces) and use an instance of AddressSanitizerRuntime for that purpose.
Kuba
llvm-svn: 219546
2014-10-11 07:43:03 +08:00
|
|
|
Stream &strm = stream.ref();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2016-06-11 01:22:26 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
LLDB AddressSanitizer instrumentation runtime plugin, breakpint on error and report data extraction
Reviewed at http://reviews.llvm.org/D5592
This patch gives LLDB some ability to interact with AddressSanitizer runtime library, on top of what we already have (historical memory stack traces provided by ASan). Namely, that's the ability to stop on an error caught by ASan, and access the report information that are associated with it. The report information is also exposed into SB API.
More precisely this patch...
adds a new plugin type, InstrumentationRuntime, which should serve as a generic superclass for other instrumentation runtime libraries, these plugins get notified when modules are loaded, so they get a chance to "activate" when a specific dynamic library is loaded
an instance of this plugin type, AddressSanitizerRuntime, which activates itself when it sees the ASan dynamic library or founds ASan statically linked in the executable
adds a collection of these plugins into the Process class
AddressSanitizerRuntime sets an internal breakpoint on __asan::AsanDie(), and when this breakpoint gets hit, it retrieves the report information from ASan
this breakpoint is then exposed as a new StopReason, eStopReasonInstrumentation, with a new StopInfo subclass, InstrumentationRuntimeStopInfo
the StopInfo superclass is extended with a m_extended_info field (it's a StructuredData::ObjectSP), that can hold arbitrary JSON-like data, which is the way the new plugin provides the report data
the "thread info" command now accepts a "-s" flag that prints out the JSON data of a stop reason (same way the "-j" flag works now)
SBThread has a new API, GetStopReasonExtendedInfoAsJSON, which dumps the JSON string into a SBStream
adds a test case for all of this
I plan to also get rid of the original ASan plugin (memory history stack traces) and use an instance of AddressSanitizerRuntime for that purpose.
Kuba
llvm-svn: 219546
2014-10-11 07:43:03 +08:00
|
|
|
if (!exe_ctx.HasThreadScope())
|
|
|
|
return false;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
LLDB AddressSanitizer instrumentation runtime plugin, breakpint on error and report data extraction
Reviewed at http://reviews.llvm.org/D5592
This patch gives LLDB some ability to interact with AddressSanitizer runtime library, on top of what we already have (historical memory stack traces provided by ASan). Namely, that's the ability to stop on an error caught by ASan, and access the report information that are associated with it. The report information is also exposed into SB API.
More precisely this patch...
adds a new plugin type, InstrumentationRuntime, which should serve as a generic superclass for other instrumentation runtime libraries, these plugins get notified when modules are loaded, so they get a chance to "activate" when a specific dynamic library is loaded
an instance of this plugin type, AddressSanitizerRuntime, which activates itself when it sees the ASan dynamic library or founds ASan statically linked in the executable
adds a collection of these plugins into the Process class
AddressSanitizerRuntime sets an internal breakpoint on __asan::AsanDie(), and when this breakpoint gets hit, it retrieves the report information from ASan
this breakpoint is then exposed as a new StopReason, eStopReasonInstrumentation, with a new StopInfo subclass, InstrumentationRuntimeStopInfo
the StopInfo superclass is extended with a m_extended_info field (it's a StructuredData::ObjectSP), that can hold arbitrary JSON-like data, which is the way the new plugin provides the report data
the "thread info" command now accepts a "-s" flag that prints out the JSON data of a stop reason (same way the "-j" flag works now)
SBThread has a new API, GetStopReasonExtendedInfoAsJSON, which dumps the JSON string into a SBStream
adds a test case for all of this
I plan to also get rid of the original ASan plugin (memory history stack traces) and use an instance of AddressSanitizerRuntime for that purpose.
Kuba
llvm-svn: 219546
2014-10-11 07:43:03 +08:00
|
|
|
StopInfoSP stop_info = exe_ctx.GetThreadPtr()->GetStopInfo();
|
|
|
|
StructuredData::ObjectSP info = stop_info->GetExtendedInfo();
|
|
|
|
if (!info)
|
|
|
|
return false;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
LLDB AddressSanitizer instrumentation runtime plugin, breakpint on error and report data extraction
Reviewed at http://reviews.llvm.org/D5592
This patch gives LLDB some ability to interact with AddressSanitizer runtime library, on top of what we already have (historical memory stack traces provided by ASan). Namely, that's the ability to stop on an error caught by ASan, and access the report information that are associated with it. The report information is also exposed into SB API.
More precisely this patch...
adds a new plugin type, InstrumentationRuntime, which should serve as a generic superclass for other instrumentation runtime libraries, these plugins get notified when modules are loaded, so they get a chance to "activate" when a specific dynamic library is loaded
an instance of this plugin type, AddressSanitizerRuntime, which activates itself when it sees the ASan dynamic library or founds ASan statically linked in the executable
adds a collection of these plugins into the Process class
AddressSanitizerRuntime sets an internal breakpoint on __asan::AsanDie(), and when this breakpoint gets hit, it retrieves the report information from ASan
this breakpoint is then exposed as a new StopReason, eStopReasonInstrumentation, with a new StopInfo subclass, InstrumentationRuntimeStopInfo
the StopInfo superclass is extended with a m_extended_info field (it's a StructuredData::ObjectSP), that can hold arbitrary JSON-like data, which is the way the new plugin provides the report data
the "thread info" command now accepts a "-s" flag that prints out the JSON data of a stop reason (same way the "-j" flag works now)
SBThread has a new API, GetStopReasonExtendedInfoAsJSON, which dumps the JSON string into a SBStream
adds a test case for all of this
I plan to also get rid of the original ASan plugin (memory history stack traces) and use an instance of AddressSanitizerRuntime for that purpose.
Kuba
llvm-svn: 219546
2014-10-11 07:43:03 +08:00
|
|
|
info->Dump(strm);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
LLDB AddressSanitizer instrumentation runtime plugin, breakpint on error and report data extraction
Reviewed at http://reviews.llvm.org/D5592
This patch gives LLDB some ability to interact with AddressSanitizer runtime library, on top of what we already have (historical memory stack traces provided by ASan). Namely, that's the ability to stop on an error caught by ASan, and access the report information that are associated with it. The report information is also exposed into SB API.
More precisely this patch...
adds a new plugin type, InstrumentationRuntime, which should serve as a generic superclass for other instrumentation runtime libraries, these plugins get notified when modules are loaded, so they get a chance to "activate" when a specific dynamic library is loaded
an instance of this plugin type, AddressSanitizerRuntime, which activates itself when it sees the ASan dynamic library or founds ASan statically linked in the executable
adds a collection of these plugins into the Process class
AddressSanitizerRuntime sets an internal breakpoint on __asan::AsanDie(), and when this breakpoint gets hit, it retrieves the report information from ASan
this breakpoint is then exposed as a new StopReason, eStopReasonInstrumentation, with a new StopInfo subclass, InstrumentationRuntimeStopInfo
the StopInfo superclass is extended with a m_extended_info field (it's a StructuredData::ObjectSP), that can hold arbitrary JSON-like data, which is the way the new plugin provides the report data
the "thread info" command now accepts a "-s" flag that prints out the JSON data of a stop reason (same way the "-j" flag works now)
SBThread has a new API, GetStopReasonExtendedInfoAsJSON, which dumps the JSON string into a SBStream
adds a test case for all of this
I plan to also get rid of the original ASan plugin (memory history stack traces) and use an instance of AddressSanitizerRuntime for that purpose.
Kuba
llvm-svn: 219546
2014-10-11 07:43:03 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-03-23 23:36:22 +08:00
|
|
|
SBThreadCollection
|
|
|
|
SBThread::GetStopReasonExtendedBacktraces(InstrumentationRuntimeType type) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBThreadCollection, SBThread,
|
|
|
|
GetStopReasonExtendedBacktraces,
|
|
|
|
(lldb::InstrumentationRuntimeType), type);
|
|
|
|
|
2020-02-07 03:08:32 +08:00
|
|
|
SBThreadCollection threads;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2016-06-11 01:22:26 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2016-03-23 23:36:22 +08:00
|
|
|
if (!exe_ctx.HasThreadScope())
|
2020-02-07 03:08:32 +08:00
|
|
|
return LLDB_RECORD_RESULT(SBThreadCollection());
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2016-03-23 23:36:22 +08:00
|
|
|
ProcessSP process_sp = exe_ctx.GetProcessSP();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2016-03-23 23:36:22 +08:00
|
|
|
StopInfoSP stop_info = exe_ctx.GetThreadPtr()->GetStopInfo();
|
|
|
|
StructuredData::ObjectSP info = stop_info->GetExtendedInfo();
|
|
|
|
if (!info)
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(threads);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2020-02-07 03:08:32 +08:00
|
|
|
threads = process_sp->GetInstrumentationRuntime(type)
|
|
|
|
->GetBacktracesFromExtendedStopInfo(info);
|
|
|
|
return LLDB_RECORD_RESULT(threads);
|
2016-03-23 23:36:22 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
size_t SBThread::GetStopDescription(char *dst, size_t dst_len) {
|
[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(size_t, SBThread, GetStopDescription,
|
|
|
|
(char *, size_t), dst, "", dst_len);
|
2019-03-06 08:06:00 +08:00
|
|
|
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2020-02-06 13:47:33 +08:00
|
|
|
if (dst)
|
|
|
|
*dst = 0;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2020-02-06 13:47:33 +08:00
|
|
|
if (!exe_ctx.HasThreadScope())
|
|
|
|
return 0;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2020-02-06 13:47:33 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (!stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock()))
|
|
|
|
return 0;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2020-02-06 13:47:33 +08:00
|
|
|
std::string thread_stop_desc = exe_ctx.GetThreadPtr()->GetStopDescription();
|
|
|
|
if (thread_stop_desc.empty())
|
|
|
|
return 0;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
if (dst)
|
2020-02-06 13:47:33 +08:00
|
|
|
return ::snprintf(dst, dst_len, "%s", thread_stop_desc.c_str()) + 1;
|
|
|
|
|
|
|
|
// NULL dst passed in, return the length needed to contain the
|
|
|
|
// description.
|
|
|
|
return thread_stop_desc.size() + 1; // Include the NULL byte for size
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2011-12-17 09:35:57 +08:00
|
|
|
SBValue SBThread::GetStopReturnValue() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::SBValue, SBThread, GetStopReturnValue);
|
|
|
|
|
2011-12-17 09:35:57 +08:00
|
|
|
ValueObjectSP return_valobj_sp;
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-02-21 08:09:25 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
StopInfoSP stop_info_sp = exe_ctx.GetThreadPtr()->GetStopInfo();
|
|
|
|
if (stop_info_sp) {
|
|
|
|
return_valobj_sp = StopInfo::GetReturnValueObject(stop_info_sp);
|
|
|
|
}
|
2011-12-17 09:35:57 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(SBValue(return_valobj_sp));
|
2011-12-17 09:35:57 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
void SBThread::SetThread(const ThreadSP &lldb_object_sp) {
|
2012-04-06 00:12:35 +08:00
|
|
|
m_opaque_sp->SetThreadSP(lldb_object_sp);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
lldb::tid_t SBThread::GetThreadID() const {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::tid_t, SBThread, GetThreadID);
|
|
|
|
|
2012-04-06 00:12:35 +08:00
|
|
|
ThreadSP thread_sp(m_opaque_sp->GetThreadSP());
|
2012-01-30 10:53:15 +08:00
|
|
|
if (thread_sp)
|
2012-02-21 08:09:25 +08:00
|
|
|
return thread_sp->GetID();
|
|
|
|
return LLDB_INVALID_THREAD_ID;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t SBThread::GetIndexID() const {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST_NO_ARGS(uint32_t, SBThread, GetIndexID);
|
|
|
|
|
2012-04-06 00:12:35 +08:00
|
|
|
ThreadSP thread_sp(m_opaque_sp->GetThreadSP());
|
2012-01-30 10:53:15 +08:00
|
|
|
if (thread_sp)
|
|
|
|
return thread_sp->GetIndexID();
|
2010-06-09 00:52:24 +08:00
|
|
|
return LLDB_INVALID_INDEX32;
|
|
|
|
}
|
2012-02-21 08:09:25 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
const char *SBThread::GetName() const {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST_NO_ARGS(const char *, SBThread, GetName);
|
|
|
|
|
[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 *name = nullptr;
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-02-21 08:09:25 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
name = exe_ctx.GetThreadPtr()->GetName();
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2010-10-30 12:51:46 +08:00
|
|
|
return name;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *SBThread::GetQueueName() const {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST_NO_ARGS(const char *, SBThread, GetQueueName);
|
|
|
|
|
[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 *name = nullptr;
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-02-21 08:09:25 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
name = exe_ctx.GetThreadPtr()->GetQueueName();
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2010-10-30 12:51:46 +08:00
|
|
|
return name;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2013-10-22 07:52:54 +08:00
|
|
|
lldb::queue_id_t SBThread::GetQueueID() const {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::queue_id_t, SBThread, GetQueueID);
|
|
|
|
|
2013-10-22 07:52:54 +08:00
|
|
|
queue_id_t id = LLDB_INVALID_QUEUE_ID;
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2013-10-22 07:52:54 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
id = exe_ctx.GetThreadPtr()->GetQueueID();
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2013-10-22 07:52:54 +08:00
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2014-06-13 10:37:02 +08:00
|
|
|
bool SBThread::GetInfoItemByPathAsString(const char *path, SBStream &strm) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(bool, SBThread, GetInfoItemByPathAsString,
|
|
|
|
(const char *, lldb::SBStream &), path, strm);
|
|
|
|
|
2014-06-13 10:37:02 +08:00
|
|
|
bool success = false;
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2014-06-13 10:37:02 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
|
|
|
StructuredData::ObjectSP info_root_sp = thread->GetExtendedInfo();
|
|
|
|
if (info_root_sp) {
|
|
|
|
StructuredData::ObjectSP node =
|
|
|
|
info_root_sp->GetObjectForDotSeparatedPath(path);
|
|
|
|
if (node) {
|
2017-05-29 16:25:46 +08:00
|
|
|
if (node->GetType() == eStructuredDataTypeString) {
|
2017-05-12 13:49:54 +08:00
|
|
|
strm.Printf("%s", node->GetAsString()->GetValue().str().c_str());
|
2014-06-13 10:37:02 +08:00
|
|
|
success = true;
|
|
|
|
}
|
2017-05-29 16:25:46 +08:00
|
|
|
if (node->GetType() == eStructuredDataTypeInteger) {
|
2014-06-13 10:37:02 +08:00
|
|
|
strm.Printf("0x%" PRIx64, node->GetAsInteger()->GetValue());
|
|
|
|
success = true;
|
|
|
|
}
|
2017-05-29 16:25:46 +08:00
|
|
|
if (node->GetType() == eStructuredDataTypeFloat) {
|
2014-06-13 10:37:02 +08:00
|
|
|
strm.Printf("0x%f", node->GetAsFloat()->GetValue());
|
|
|
|
success = true;
|
|
|
|
}
|
2017-05-29 16:25:46 +08:00
|
|
|
if (node->GetType() == eStructuredDataTypeBoolean) {
|
2018-12-15 08:15:33 +08:00
|
|
|
if (node->GetAsBoolean()->GetValue())
|
2014-06-13 10:37:02 +08:00
|
|
|
strm.Printf("true");
|
|
|
|
else
|
|
|
|
strm.Printf("false");
|
|
|
|
success = true;
|
|
|
|
}
|
2017-05-29 16:25:46 +08:00
|
|
|
if (node->GetType() == eStructuredDataTypeNull) {
|
2014-06-13 10:37:02 +08:00
|
|
|
strm.Printf("null");
|
|
|
|
success = true;
|
|
|
|
}
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2014-06-13 10:37:02 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2014-06-13 10:37:02 +08:00
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2012-05-04 05:19:36 +08:00
|
|
|
SBError SBThread::ResumeNewPlan(ExecutionContext &exe_ctx,
|
|
|
|
ThreadPlan *new_plan) {
|
|
|
|
SBError sb_error;
|
2014-06-13 10:37:02 +08:00
|
|
|
|
2012-05-04 05:19:36 +08:00
|
|
|
Process *process = exe_ctx.GetProcessPtr();
|
|
|
|
if (!process) {
|
|
|
|
sb_error.SetErrorString("No process in SBThread::ResumeNewPlan");
|
|
|
|
return sb_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
|
|
|
if (!thread) {
|
|
|
|
sb_error.SetErrorString("No thread in SBThread::ResumeNewPlan");
|
|
|
|
return sb_error;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2012-05-04 05:19:36 +08:00
|
|
|
// User level plans should be Master Plans so they can be interrupted, other
|
2018-05-01 00:49:04 +08:00
|
|
|
// plans executed, and then a "continue" will resume the plan.
|
[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
|
|
|
if (new_plan != nullptr) {
|
2012-05-04 05:19:36 +08:00
|
|
|
new_plan->SetIsMasterPlan(true);
|
|
|
|
new_plan->SetOkayToDiscard(false);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2012-05-04 05:19:36 +08:00
|
|
|
// Why do we need to set the current thread by ID here???
|
|
|
|
process->GetThreadList().SetSelectedThreadByID(thread->GetID());
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2014-10-21 09:00:42 +08:00
|
|
|
if (process->GetTarget().GetDebugger().GetAsyncExecution())
|
|
|
|
sb_error.ref() = process->Resume();
|
2016-09-07 04:57:50 +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->ResumeSynchronous(nullptr);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-05-04 05:19:36 +08:00
|
|
|
return sb_error;
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
void SBThread::StepOver(lldb::RunMode stop_other_threads) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(void, SBThread, StepOver, (lldb::RunMode),
|
|
|
|
stop_other_threads);
|
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
SBError error; // Ignored
|
|
|
|
StepOver(stop_other_threads, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SBThread::StepOver(lldb::RunMode stop_other_threads, SBError &error) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(void, SBThread, StepOver, (lldb::RunMode, lldb::SBError &),
|
|
|
|
stop_other_threads, error);
|
|
|
|
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2012-01-30 10:53:15 +08:00
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
if (!exe_ctx.HasThreadScope()) {
|
|
|
|
error.SetErrorString("this SBThread object is invalid");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
|
|
|
bool abort_other_plans = false;
|
|
|
|
StackFrameSP frame_sp(thread->GetStackFrameAtIndex(0));
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2018-11-15 09:18:15 +08:00
|
|
|
Status new_plan_status;
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
ThreadPlanSP new_plan_sp;
|
|
|
|
if (frame_sp) {
|
|
|
|
if (frame_sp->HasDebugInformation()) {
|
|
|
|
const LazyBool avoid_no_debug = eLazyBoolCalculate;
|
|
|
|
SymbolContext sc(frame_sp->GetSymbolContext(eSymbolContextEverything));
|
|
|
|
new_plan_sp = thread->QueueThreadPlanForStepOverRange(
|
|
|
|
abort_other_plans, sc.line_entry, sc, stop_other_threads,
|
2018-11-15 09:18:15 +08:00
|
|
|
new_plan_status, avoid_no_debug);
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
} else {
|
|
|
|
new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction(
|
2018-11-15 09:18:15 +08:00
|
|
|
true, abort_other_plans, stop_other_threads, new_plan_status);
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
error = ResumeNewPlan(exe_ctx, new_plan_sp.get());
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void SBThread::StepInto(lldb::RunMode stop_other_threads) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(void, SBThread, StepInto, (lldb::RunMode),
|
|
|
|
stop_other_threads);
|
|
|
|
|
[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
|
|
|
StepInto(nullptr, stop_other_threads);
|
Fixed a few bugs in the "step in" thread plan logic.
Added a "step-in-target" flag to "thread step-in" so if you have something like:
Process 28464 stopped
* thread #1: tid = 0x1c03, function: main , stop reason = breakpoint 1.1
frame #0: 0x0000000100000e08 a.out`main at main.c:62
61
-> 62 int A6 = complex (a(4), b(5), c(6)); // Stop here to step targetting b and hitting breakpoint.
63
and you want to get into "complex" skipping a, b and c, you can do:
(lldb) step -t complex
Process 28464 stopped
* thread #1: tid = 0x1c03, function: complex , stop reason = step in
frame #0: 0x0000000100000d0d a.out`complex at main.c:44
41
42 int complex (int first, int second, int third)
43 {
-> 44 return first + second + third; // Step in targetting complex should stop here
45 }
46
47 int main (int argc, char const *argv[])
llvm-svn: 170008
2012-12-13 03:58:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void SBThread::StepInto(const char *target_name,
|
|
|
|
lldb::RunMode stop_other_threads) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(void, SBThread, StepInto, (const char *, lldb::RunMode),
|
|
|
|
target_name, stop_other_threads);
|
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
SBError error; // Ignored
|
2016-02-13 08:31:47 +08:00
|
|
|
StepInto(target_name, LLDB_INVALID_LINE_NUMBER, error, stop_other_threads);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SBThread::StepInto(const char *target_name, uint32_t end_line,
|
|
|
|
SBError &error, lldb::RunMode stop_other_threads) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(void, SBThread, StepInto,
|
|
|
|
(const char *, uint32_t, lldb::SBError &, lldb::RunMode),
|
|
|
|
target_name, end_line, error, stop_other_threads);
|
|
|
|
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2012-01-30 10:53:15 +08:00
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
if (!exe_ctx.HasThreadScope()) {
|
|
|
|
error.SetErrorString("this SBThread object is invalid");
|
|
|
|
return;
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
bool abort_other_plans = false;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
|
|
|
StackFrameSP frame_sp(thread->GetStackFrameAtIndex(0));
|
|
|
|
ThreadPlanSP new_plan_sp;
|
2018-11-15 09:18:15 +08:00
|
|
|
Status new_plan_status;
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
|
|
|
|
if (frame_sp && frame_sp->HasDebugInformation()) {
|
|
|
|
SymbolContext sc(frame_sp->GetSymbolContext(eSymbolContextEverything));
|
|
|
|
AddressRange range;
|
|
|
|
if (end_line == LLDB_INVALID_LINE_NUMBER)
|
|
|
|
range = sc.line_entry.range;
|
|
|
|
else {
|
|
|
|
if (!sc.GetAddressRangeFromHereToEndLine(end_line, range, error.ref()))
|
|
|
|
return;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
const LazyBool step_out_avoids_code_without_debug_info =
|
|
|
|
eLazyBoolCalculate;
|
|
|
|
const LazyBool step_in_avoids_code_without_debug_info =
|
|
|
|
eLazyBoolCalculate;
|
|
|
|
new_plan_sp = thread->QueueThreadPlanForStepInRange(
|
|
|
|
abort_other_plans, range, sc, target_name, stop_other_threads,
|
2018-11-15 09:18:15 +08:00
|
|
|
new_plan_status, step_in_avoids_code_without_debug_info,
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
step_out_avoids_code_without_debug_info);
|
|
|
|
} else {
|
|
|
|
new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction(
|
2018-11-15 09:18:15 +08:00
|
|
|
false, abort_other_plans, stop_other_threads, new_plan_status);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2018-11-15 09:18:15 +08:00
|
|
|
|
|
|
|
if (new_plan_status.Success())
|
|
|
|
error = ResumeNewPlan(exe_ctx, new_plan_sp.get());
|
|
|
|
else
|
|
|
|
error.SetErrorString(new_plan_status.AsCString());
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void SBThread::StepOut() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(void, SBThread, StepOut);
|
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
SBError error; // Ignored
|
|
|
|
StepOut(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SBThread::StepOut(SBError &error) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(void, SBThread, StepOut, (lldb::SBError &), error);
|
|
|
|
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2012-08-23 05:34:33 +08:00
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
if (!exe_ctx.HasThreadScope()) {
|
|
|
|
error.SetErrorString("this SBThread object is invalid");
|
|
|
|
return;
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
bool abort_other_plans = false;
|
|
|
|
bool stop_other_threads = false;
|
2012-02-21 08:09:25 +08:00
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
const LazyBool avoid_no_debug = eLazyBoolCalculate;
|
2018-11-15 09:18:15 +08:00
|
|
|
Status new_plan_status;
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
ThreadPlanSP new_plan_sp(thread->QueueThreadPlanForStepOut(
|
[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
|
|
|
abort_other_plans, nullptr, false, stop_other_threads, eVoteYes,
|
2018-11-15 09:18:15 +08:00
|
|
|
eVoteNoOpinion, 0, new_plan_status, avoid_no_debug));
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
|
2018-11-15 09:18:15 +08:00
|
|
|
if (new_plan_status.Success())
|
|
|
|
error = ResumeNewPlan(exe_ctx, new_plan_sp.get());
|
|
|
|
else
|
|
|
|
error.SetErrorString(new_plan_status.AsCString());
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void SBThread::StepOutOfFrame(SBFrame &sb_frame) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(void, SBThread, StepOutOfFrame, (lldb::SBFrame &),
|
|
|
|
sb_frame);
|
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
SBError error; // Ignored
|
|
|
|
StepOutOfFrame(sb_frame, error);
|
2011-01-21 14:11:58 +08:00
|
|
|
}
|
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
void SBThread::StepOutOfFrame(SBFrame &sb_frame, SBError &error) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(void, SBThread, StepOutOfFrame,
|
|
|
|
(lldb::SBFrame &, lldb::SBError &), sb_frame, error);
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2012-08-23 05:34:33 +08:00
|
|
|
|
2015-09-09 02:40:59 +08:00
|
|
|
if (!sb_frame.IsValid()) {
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
error.SetErrorString("passed invalid SBFrame object");
|
2016-09-07 04:57:50 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-04 17:33:30 +08:00
|
|
|
StackFrameSP frame_sp(sb_frame.GetFrameSP());
|
2016-09-07 04:57:50 +08:00
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
if (!exe_ctx.HasThreadScope()) {
|
|
|
|
error.SetErrorString("this SBThread object is invalid");
|
|
|
|
return;
|
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
bool abort_other_plans = false;
|
|
|
|
bool stop_other_threads = false;
|
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
|
|
|
if (sb_frame.GetThread().GetThreadID() != thread->GetID()) {
|
|
|
|
error.SetErrorString("passed a frame from another thread");
|
|
|
|
return;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
|
2018-11-15 09:18:15 +08:00
|
|
|
Status new_plan_status;
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
ThreadPlanSP new_plan_sp(thread->QueueThreadPlanForStepOut(
|
[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
|
|
|
abort_other_plans, nullptr, false, stop_other_threads, eVoteYes,
|
2018-11-15 09:18:15 +08:00
|
|
|
eVoteNoOpinion, frame_sp->GetFrameIndex(), new_plan_status));
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
|
2018-11-15 09:18:15 +08:00
|
|
|
if (new_plan_status.Success())
|
|
|
|
error = ResumeNewPlan(exe_ctx, new_plan_sp.get());
|
|
|
|
else
|
|
|
|
error.SetErrorString(new_plan_status.AsCString());
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void SBThread::StepInstruction(bool step_over) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(void, SBThread, StepInstruction, (bool), step_over);
|
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
SBError error; // Ignored
|
|
|
|
StepInstruction(step_over, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SBThread::StepInstruction(bool step_over, SBError &error) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(void, SBThread, StepInstruction, (bool, lldb::SBError &),
|
|
|
|
step_over, error);
|
|
|
|
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2010-10-26 11:11:13 +08:00
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
if (!exe_ctx.HasThreadScope()) {
|
|
|
|
error.SetErrorString("this SBThread object is invalid");
|
|
|
|
return;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
|
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
2018-11-15 09:18:15 +08:00
|
|
|
Status new_plan_status;
|
|
|
|
ThreadPlanSP new_plan_sp(thread->QueueThreadPlanForStepSingleInstruction(
|
|
|
|
step_over, true, true, new_plan_status));
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
|
2018-11-15 09:18:15 +08:00
|
|
|
if (new_plan_status.Success())
|
|
|
|
error = ResumeNewPlan(exe_ctx, new_plan_sp.get());
|
|
|
|
else
|
|
|
|
error.SetErrorString(new_plan_status.AsCString());
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void SBThread::RunToAddress(lldb::addr_t addr) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(void, SBThread, RunToAddress, (lldb::addr_t), addr);
|
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
SBError error; // Ignored
|
|
|
|
RunToAddress(addr, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SBThread::RunToAddress(lldb::addr_t addr, SBError &error) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(void, SBThread, RunToAddress,
|
|
|
|
(lldb::addr_t, lldb::SBError &), addr, error);
|
|
|
|
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2010-10-26 11:11:13 +08:00
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
if (!exe_ctx.HasThreadScope()) {
|
|
|
|
error.SetErrorString("this SBThread object is invalid");
|
|
|
|
return;
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
bool abort_other_plans = false;
|
|
|
|
bool stop_other_threads = true;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
Address target_addr(addr);
|
2012-02-21 08:09:25 +08:00
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2018-11-15 09:18:15 +08:00
|
|
|
Status new_plan_status;
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
ThreadPlanSP new_plan_sp(thread->QueueThreadPlanForRunToAddress(
|
2018-11-15 09:18:15 +08:00
|
|
|
abort_other_plans, target_addr, stop_other_threads, new_plan_status));
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
|
2018-11-15 09:18:15 +08:00
|
|
|
if (new_plan_status.Success())
|
|
|
|
error = ResumeNewPlan(exe_ctx, new_plan_sp.get());
|
|
|
|
else
|
|
|
|
error.SetErrorString(new_plan_status.AsCString());
|
2011-01-21 14:11:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
SBError SBThread::StepOverUntil(lldb::SBFrame &sb_frame,
|
|
|
|
lldb::SBFileSpec &sb_file_spec, uint32_t line) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBError, SBThread, StepOverUntil,
|
|
|
|
(lldb::SBFrame &, lldb::SBFileSpec &, uint32_t), sb_frame,
|
|
|
|
sb_file_spec, line);
|
|
|
|
|
2011-01-21 14:11:58 +08:00
|
|
|
SBError sb_error;
|
|
|
|
char path[PATH_MAX];
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2013-11-04 17:33:30 +08:00
|
|
|
StackFrameSP frame_sp(sb_frame.GetFrameSP());
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2013-11-04 17:33:30 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
2012-02-21 08:09:25 +08:00
|
|
|
Target *target = exe_ctx.GetTargetPtr();
|
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
2012-01-30 15:41:31 +08:00
|
|
|
|
2011-01-21 14:11:58 +08:00
|
|
|
if (line == 0) {
|
2014-04-04 12:06:10 +08:00
|
|
|
sb_error.SetErrorString("invalid line argument");
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_error);
|
2011-01-21 14:11:58 +08:00
|
|
|
}
|
2012-01-30 10:53:15 +08:00
|
|
|
|
2012-01-30 15:41:31 +08:00
|
|
|
if (!frame_sp) {
|
2012-02-21 08:09:25 +08:00
|
|
|
frame_sp = thread->GetSelectedFrame();
|
2011-01-21 14:11:58 +08:00
|
|
|
if (!frame_sp)
|
2012-02-21 08:09:25 +08:00
|
|
|
frame_sp = thread->GetStackFrameAtIndex(0);
|
2011-01-21 14:11:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
SymbolContext frame_sc;
|
|
|
|
if (!frame_sp) {
|
|
|
|
sb_error.SetErrorString("no valid frames in thread to step");
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_error);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2011-01-21 14:11:58 +08:00
|
|
|
// If we have a frame, get its line
|
|
|
|
frame_sc = frame_sp->GetSymbolContext(
|
|
|
|
eSymbolContextCompUnit | eSymbolContextFunction |
|
|
|
|
eSymbolContextLineEntry | eSymbolContextSymbol);
|
2014-04-04 12:06:10 +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
|
|
|
if (frame_sc.comp_unit == nullptr) {
|
2011-01-21 14:11:58 +08:00
|
|
|
sb_error.SetErrorStringWithFormat(
|
|
|
|
"frame %u doesn't have debug information", frame_sp->GetFrameIndex());
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_error);
|
2011-01-21 14:11:58 +08:00
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2011-05-08 08:56:32 +08:00
|
|
|
FileSpec step_file_spec;
|
|
|
|
if (sb_file_spec.IsValid()) {
|
|
|
|
// The file spec passed in was valid, so use it
|
2011-01-21 14:11:58 +08:00
|
|
|
step_file_spec = sb_file_spec.ref();
|
|
|
|
} else {
|
|
|
|
if (frame_sc.line_entry.IsValid())
|
2011-05-08 08:56:32 +08:00
|
|
|
step_file_spec = frame_sc.line_entry.file;
|
2011-01-21 14:11:58 +08:00
|
|
|
else {
|
2011-05-08 08:56:32 +08:00
|
|
|
sb_error.SetErrorString("invalid file argument or no file for frame");
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_error);
|
2011-01-21 14:11:58 +08:00
|
|
|
}
|
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2011-05-08 08:56:32 +08:00
|
|
|
// Grab the current function, then we will make sure the "until" address is
|
|
|
|
// within the function. We discard addresses that are out of the current
|
2011-01-21 14:11:58 +08:00
|
|
|
// function, and then if there are no addresses remaining, give an
|
2018-05-01 00:49:04 +08:00
|
|
|
// appropriate error message.
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2011-05-08 08:56:32 +08:00
|
|
|
bool all_in_function = true;
|
2011-01-21 14:11:58 +08:00
|
|
|
AddressRange fun_range = frame_sc.function->GetAddressRange();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2011-01-21 14:11:58 +08:00
|
|
|
std::vector<addr_t> step_over_until_addrs;
|
2012-05-12 07:47:32 +08:00
|
|
|
const bool abort_other_plans = false;
|
2012-09-15 02:57:14 +08:00
|
|
|
const bool stop_other_threads = false;
|
2011-01-21 14:11:58 +08:00
|
|
|
const bool check_inlines = true;
|
|
|
|
const bool exact = false;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2011-01-21 14:11:58 +08:00
|
|
|
SymbolContextList sc_list;
|
2019-11-28 23:54:15 +08:00
|
|
|
frame_sc.comp_unit->ResolveSymbolContext(step_file_spec, line,
|
|
|
|
check_inlines, exact,
|
|
|
|
eSymbolContextLineEntry, sc_list);
|
|
|
|
const uint32_t num_matches = sc_list.GetSize();
|
2011-01-21 14:11:58 +08:00
|
|
|
if (num_matches > 0) {
|
|
|
|
SymbolContext sc;
|
|
|
|
for (uint32_t i = 0; i < num_matches; ++i) {
|
|
|
|
if (sc_list.GetContextAtIndex(i, sc)) {
|
2011-05-08 08:56:32 +08:00
|
|
|
addr_t step_addr =
|
|
|
|
sc.line_entry.range.GetBaseAddress().GetLoadAddress(target);
|
2011-01-21 14:11:58 +08:00
|
|
|
if (step_addr != LLDB_INVALID_ADDRESS) {
|
2011-05-08 08:56:32 +08:00
|
|
|
if (fun_range.ContainsLoadAddress(step_addr, target))
|
2011-01-21 14:11:58 +08:00
|
|
|
step_over_until_addrs.push_back(step_addr);
|
2011-05-08 08:56:32 +08:00
|
|
|
else
|
2011-10-26 08:56:27 +08:00
|
|
|
all_in_function = false;
|
2011-01-21 14:11:58 +08:00
|
|
|
}
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2011-01-21 14:11:58 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2011-05-08 08:56:32 +08:00
|
|
|
if (step_over_until_addrs.empty()) {
|
|
|
|
if (all_in_function) {
|
|
|
|
step_file_spec.GetPath(path, sizeof(path));
|
2011-09-21 05:44:10 +08:00
|
|
|
sb_error.SetErrorStringWithFormat("No line entries for %s:%u", path,
|
2016-09-07 04:57:50 +08:00
|
|
|
line);
|
2011-01-21 14:11:58 +08:00
|
|
|
} else
|
|
|
|
sb_error.SetErrorString("step until target not in current function");
|
2016-09-07 04:57:50 +08:00
|
|
|
} else {
|
2018-11-15 09:18:15 +08:00
|
|
|
Status new_plan_status;
|
2013-07-19 05:48:26 +08:00
|
|
|
ThreadPlanSP new_plan_sp(thread->QueueThreadPlanForStepUntil(
|
|
|
|
abort_other_plans, &step_over_until_addrs[0],
|
2011-01-21 14:11:58 +08:00
|
|
|
step_over_until_addrs.size(), stop_other_threads,
|
2018-11-15 09:18:15 +08:00
|
|
|
frame_sp->GetFrameIndex(), new_plan_status));
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2018-11-15 09:18:15 +08:00
|
|
|
if (new_plan_status.Success())
|
|
|
|
sb_error = ResumeNewPlan(exe_ctx, new_plan_sp.get());
|
|
|
|
else
|
|
|
|
sb_error.SetErrorString(new_plan_status.AsCString());
|
2011-01-21 14:11:58 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
} else {
|
2014-09-30 07:17:18 +08:00
|
|
|
sb_error.SetErrorString("this SBThread object is invalid");
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_error);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2014-09-30 07:17:18 +08:00
|
|
|
SBError SBThread::StepUsingScriptedThreadPlan(const char *script_class_name) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBError, SBThread, StepUsingScriptedThreadPlan,
|
|
|
|
(const char *), script_class_name);
|
|
|
|
|
|
|
|
return LLDB_RECORD_RESULT(
|
|
|
|
StepUsingScriptedThreadPlan(script_class_name, true));
|
2016-08-06 06:06:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
SBError SBThread::StepUsingScriptedThreadPlan(const char *script_class_name,
|
2019-10-04 06:50:18 +08:00
|
|
|
bool resume_immediately) {
|
|
|
|
LLDB_RECORD_METHOD(lldb::SBError, SBThread, StepUsingScriptedThreadPlan,
|
2020-02-06 13:20:12 +08:00
|
|
|
(const char *, bool), script_class_name,
|
2019-10-04 06:50:18 +08:00
|
|
|
resume_immediately);
|
|
|
|
|
|
|
|
lldb::SBStructuredData no_data;
|
2020-02-06 13:20:12 +08:00
|
|
|
return LLDB_RECORD_RESULT(StepUsingScriptedThreadPlan(
|
|
|
|
script_class_name, no_data, resume_immediately));
|
2019-10-04 06:50:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
SBError SBThread::StepUsingScriptedThreadPlan(const char *script_class_name,
|
|
|
|
SBStructuredData &args_data,
|
2016-08-06 06:06:12 +08:00
|
|
|
bool resume_immediately) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBError, SBThread, StepUsingScriptedThreadPlan,
|
2020-02-06 13:20:12 +08:00
|
|
|
(const char *, lldb::SBStructuredData &, bool),
|
|
|
|
script_class_name, args_data, resume_immediately);
|
2019-03-06 08:06:00 +08:00
|
|
|
|
2018-11-15 09:18:15 +08:00
|
|
|
SBError error;
|
2014-09-30 07:17:18 +08:00
|
|
|
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2014-09-30 07:17:18 +08:00
|
|
|
|
|
|
|
if (!exe_ctx.HasThreadScope()) {
|
2018-11-15 09:18:15 +08:00
|
|
|
error.SetErrorString("this SBThread object is invalid");
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(error);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2014-09-30 07:17:18 +08:00
|
|
|
|
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
2018-11-15 09:18:15 +08:00
|
|
|
Status new_plan_status;
|
2019-10-04 06:50:18 +08:00
|
|
|
StructuredData::ObjectSP obj_sp = args_data.m_impl_up->GetObjectSP();
|
|
|
|
|
2018-11-15 09:18:15 +08:00
|
|
|
ThreadPlanSP new_plan_sp = thread->QueueThreadPlanForStepScripted(
|
2019-10-04 06:50:18 +08:00
|
|
|
false, script_class_name, obj_sp, false, new_plan_status);
|
2014-09-30 07:17:18 +08:00
|
|
|
|
2018-11-15 09:18:15 +08:00
|
|
|
if (new_plan_status.Fail()) {
|
|
|
|
error.SetErrorString(new_plan_status.AsCString());
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(error);
|
2014-09-30 07:17:18 +08:00
|
|
|
}
|
|
|
|
|
2018-11-15 09:18:15 +08:00
|
|
|
if (!resume_immediately)
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(error);
|
2014-09-30 07:17:18 +08:00
|
|
|
|
2018-11-15 09:18:15 +08:00
|
|
|
if (new_plan_status.Success())
|
|
|
|
error = ResumeNewPlan(exe_ctx, new_plan_sp.get());
|
|
|
|
else
|
|
|
|
error.SetErrorString(new_plan_status.AsCString());
|
2013-09-12 10:20:34 +08:00
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(error);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2013-09-12 10:20:34 +08:00
|
|
|
|
2014-04-04 12:06:10 +08:00
|
|
|
SBError SBThread::JumpToLine(lldb::SBFileSpec &file_spec, uint32_t line) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBError, SBThread, JumpToLine,
|
|
|
|
(lldb::SBFileSpec &, uint32_t), file_spec, line);
|
|
|
|
|
2013-09-12 10:20:34 +08:00
|
|
|
SBError sb_error;
|
|
|
|
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
if (!exe_ctx.HasThreadScope()) {
|
|
|
|
sb_error.SetErrorString("this SBThread object is invalid");
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_error);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2012-02-21 08:09:25 +08:00
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2019-11-29 00:02:07 +08:00
|
|
|
Status err = thread->JumpToLine(file_spec.ref(), line, true);
|
2016-08-06 06:06:12 +08:00
|
|
|
sb_error.SetError(err);
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_error);
|
2013-09-12 10:20:34 +08:00
|
|
|
}
|
|
|
|
|
2012-09-14 10:14:15 +08:00
|
|
|
SBError SBThread::ReturnFromFrame(SBFrame &frame, SBValue &return_value) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBError, SBThread, ReturnFromFrame,
|
|
|
|
(lldb::SBFrame &, lldb::SBValue &), frame, return_value);
|
|
|
|
|
2012-09-12 08:40:39 +08:00
|
|
|
SBError sb_error;
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2012-09-12 08:40:39 +08:00
|
|
|
|
2012-02-21 08:09:25 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
2011-01-21 14:11:58 +08:00
|
|
|
sb_error.SetError(
|
2012-09-14 10:14:15 +08:00
|
|
|
thread->ReturnFromFrame(frame.GetFrameSP(), return_value.GetSP()));
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_error);
|
2012-09-12 08:40:39 +08:00
|
|
|
}
|
|
|
|
|
2016-07-08 10:12:05 +08:00
|
|
|
SBError SBThread::UnwindInnermostExpression() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::SBError, SBThread,
|
|
|
|
UnwindInnermostExpression);
|
|
|
|
|
2016-07-08 10:12:05 +08:00
|
|
|
SBError sb_error;
|
|
|
|
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
2012-02-21 08:09:25 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
2016-07-08 10:12:05 +08:00
|
|
|
sb_error.SetError(thread->UnwindInnermostExpression());
|
|
|
|
if (sb_error.Success())
|
|
|
|
thread->SetSelectedFrameByIndex(0, false);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2016-07-08 10:12:05 +08:00
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_error);
|
2016-07-08 10:12:05 +08:00
|
|
|
}
|
2011-01-21 14:11:58 +08:00
|
|
|
|
2011-01-12 10:25:42 +08:00
|
|
|
bool SBThread::Suspend() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(bool, SBThread, Suspend);
|
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
SBError error; // Ignored
|
|
|
|
return Suspend(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SBThread::Suspend(SBError &error) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(bool, SBThread, Suspend, (lldb::SBError &), error);
|
|
|
|
|
2016-06-11 01:22:26 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-04-06 10:17:47 +08:00
|
|
|
bool result = false;
|
2012-02-21 08:09:25 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
2012-04-06 10:17:47 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
exe_ctx.GetThreadPtr()->SetResumeState(eStateSuspended);
|
|
|
|
result = true;
|
|
|
|
} else {
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
error.SetErrorString("process is running");
|
2011-01-12 10:25:42 +08:00
|
|
|
}
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
} else
|
|
|
|
error.SetErrorString("this SBThread object is invalid");
|
2012-04-06 10:17:47 +08:00
|
|
|
return result;
|
2011-01-12 10:25:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SBThread::Resume() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(bool, SBThread, Resume);
|
|
|
|
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
SBError error; // Ignored
|
|
|
|
return Resume(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SBThread::Resume(SBError &error) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(bool, SBThread, Resume, (lldb::SBError &), error);
|
|
|
|
|
2016-06-11 01:22:26 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-04-06 10:17:47 +08:00
|
|
|
bool result = false;
|
2012-02-21 08:09:25 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
2012-04-06 10:17:47 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
2014-04-03 09:26:14 +08:00
|
|
|
const bool override_suspend = true;
|
|
|
|
exe_ctx.GetThreadPtr()->SetResumeState(eStateRunning, override_suspend);
|
2012-04-06 10:17:47 +08:00
|
|
|
result = true;
|
|
|
|
} else {
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
error.SetErrorString("process is running");
|
2011-01-12 10:25:42 +08:00
|
|
|
}
|
Improve SBThread's stepping API using SBError parameter.
Summary: The new methods will allow to get error messages from stepping API.
Reviewers: aprantl, clayborg, labath, jingham
Reviewed By: aprantl, clayborg, jingham
Subscribers: apolyakov, labath, jingham, clayborg, lemo, lldb-commits
Differential Revision: https://reviews.llvm.org/D47991
llvm-svn: 335180
2018-06-21 05:43:16 +08:00
|
|
|
} else
|
|
|
|
error.SetErrorString("this SBThread object is invalid");
|
2012-04-06 10:17:47 +08:00
|
|
|
return result;
|
2011-01-12 10:25:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SBThread::IsSuspended() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(bool, SBThread, IsSuspended);
|
|
|
|
|
2016-06-11 01:22:26 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
2012-02-21 08:09:25 +08:00
|
|
|
if (exe_ctx.HasThreadScope())
|
|
|
|
return exe_ctx.GetThreadPtr()->GetResumeState() == eStateSuspended;
|
2011-01-12 10:25:42 +08:00
|
|
|
return false;
|
|
|
|
}
|
2013-04-16 07:33:53 +08:00
|
|
|
|
|
|
|
bool SBThread::IsStopped() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(bool, SBThread, IsStopped);
|
|
|
|
|
2016-06-11 01:22:26 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
2013-04-16 07:33:53 +08:00
|
|
|
if (exe_ctx.HasThreadScope())
|
|
|
|
return StateIsStoppedState(exe_ctx.GetThreadPtr()->GetState(), true);
|
|
|
|
return false;
|
|
|
|
}
|
2011-01-12 10:25:42 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBProcess SBThread::GetProcess() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::SBProcess, SBThread, GetProcess);
|
|
|
|
|
2012-01-30 15:41:31 +08:00
|
|
|
SBProcess sb_process;
|
2016-06-11 01:22:26 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-02-21 08:09:25 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
2010-06-09 00:52:24 +08:00
|
|
|
// Have to go up to the target so we can get a shared pointer to our
|
|
|
|
// process...
|
2012-02-21 08:09:25 +08:00
|
|
|
sb_process.SetSP(exe_ctx.GetProcessSP());
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_process);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t SBThread::GetNumFrames() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBThread, GetNumFrames);
|
|
|
|
|
2010-10-26 11:11:13 +08:00
|
|
|
uint32_t num_frames = 0;
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-02-21 08:09:25 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
num_frames = exe_ctx.GetThreadPtr()->GetStackFrameCount();
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
return num_frames;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
SBFrame SBThread::GetFrameAtIndex(uint32_t idx) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBFrame, SBThread, GetFrameAtIndex, (uint32_t), idx);
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBFrame sb_frame;
|
2013-11-04 17:33:30 +08:00
|
|
|
StackFrameSP frame_sp;
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-02-21 08:09:25 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
frame_sp = exe_ctx.GetThreadPtr()->GetStackFrameAtIndex(idx);
|
|
|
|
sb_frame.SetFrameSP(frame_sp);
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
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(sb_frame);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2010-12-17 10:26:24 +08:00
|
|
|
lldb::SBFrame SBThread::GetSelectedFrame() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::SBFrame, SBThread, GetSelectedFrame);
|
|
|
|
|
2010-12-17 10:26:24 +08:00
|
|
|
SBFrame sb_frame;
|
2013-11-04 17:33:30 +08:00
|
|
|
StackFrameSP frame_sp;
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-02-21 08:09:25 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
frame_sp = exe_ctx.GetThreadPtr()->GetSelectedFrame();
|
|
|
|
sb_frame.SetFrameSP(frame_sp);
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2010-12-17 10:26:24 +08:00
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_frame);
|
2010-12-17 10:26:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
lldb::SBFrame SBThread::SetSelectedFrame(uint32_t idx) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBFrame, SBThread, SetSelectedFrame, (uint32_t),
|
|
|
|
idx);
|
|
|
|
|
2010-12-17 10:26:24 +08:00
|
|
|
SBFrame sb_frame;
|
2013-11-04 17:33:30 +08:00
|
|
|
StackFrameSP frame_sp;
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-02-21 08:09:25 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
2012-04-06 00:12:35 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
|
|
|
frame_sp = thread->GetStackFrameAtIndex(idx);
|
|
|
|
if (frame_sp) {
|
|
|
|
thread->SetSelectedFrame(frame_sp.get());
|
|
|
|
sb_frame.SetFrameSP(frame_sp);
|
2010-12-17 10:26:24 +08:00
|
|
|
}
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_frame);
|
2010-12-17 10:26:24 +08:00
|
|
|
}
|
|
|
|
|
2012-10-11 02:32:14 +08:00
|
|
|
bool SBThread::EventIsThreadEvent(const SBEvent &event) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_STATIC_METHOD(bool, SBThread, EventIsThreadEvent,
|
|
|
|
(const lldb::SBEvent &), event);
|
|
|
|
|
[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 Thread::ThreadEventData::GetEventDataFromEvent(event.get()) != nullptr;
|
2012-10-11 02:32:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
SBFrame SBThread::GetStackFrameFromEvent(const SBEvent &event) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_STATIC_METHOD(lldb::SBFrame, SBThread, GetStackFrameFromEvent,
|
|
|
|
(const lldb::SBEvent &), event);
|
|
|
|
|
|
|
|
return LLDB_RECORD_RESULT(
|
|
|
|
Thread::ThreadEventData::GetStackFrameFromEvent(event.get()));
|
2012-10-11 02:32:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
SBThread SBThread::GetThreadFromEvent(const SBEvent &event) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_STATIC_METHOD(lldb::SBThread, SBThread, GetThreadFromEvent,
|
|
|
|
(const lldb::SBEvent &), event);
|
|
|
|
|
|
|
|
return LLDB_RECORD_RESULT(
|
|
|
|
Thread::ThreadEventData::GetThreadFromEvent(event.get()));
|
2012-10-11 02:32:14 +08:00
|
|
|
}
|
2010-12-17 10:26:24 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
bool SBThread::operator==(const SBThread &rhs) const {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST(bool, SBThread, operator==,(const lldb::SBThread &),
|
|
|
|
rhs);
|
|
|
|
|
2012-04-06 00:12:35 +08:00
|
|
|
return m_opaque_sp->GetThreadSP().get() ==
|
|
|
|
rhs.m_opaque_sp->GetThreadSP().get();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SBThread::operator!=(const SBThread &rhs) const {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST(bool, SBThread, operator!=,(const lldb::SBThread &),
|
|
|
|
rhs);
|
|
|
|
|
2012-04-06 00:12:35 +08:00
|
|
|
return m_opaque_sp->GetThreadSP().get() !=
|
|
|
|
rhs.m_opaque_sp->GetThreadSP().get();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2010-09-20 13:20:02 +08:00
|
|
|
|
2012-10-11 02:32:14 +08:00
|
|
|
bool SBThread::GetStatus(SBStream &status) const {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST(bool, SBThread, GetStatus, (lldb::SBStream &),
|
|
|
|
status);
|
|
|
|
|
2012-10-11 02:32:14 +08:00
|
|
|
Stream &strm = status.ref();
|
|
|
|
|
2016-06-11 01:22:26 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
2012-10-11 02:32:14 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
2016-11-09 04:36:40 +08:00
|
|
|
exe_ctx.GetThreadPtr()->GetStatus(strm, 0, 1, 1, true);
|
2012-10-11 02:32:14 +08:00
|
|
|
} else
|
|
|
|
strm.PutCString("No status");
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-10-11 02:32:14 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-10-26 11:11:13 +08:00
|
|
|
bool SBThread::GetDescription(SBStream &description) const {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST(bool, SBThread, GetDescription, (lldb::SBStream &),
|
|
|
|
description);
|
|
|
|
|
|
|
|
return GetDescription(description, false);
|
2016-11-09 04:36:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SBThread::GetDescription(SBStream &description, bool stop_format) const {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_CONST(bool, SBThread, GetDescription,
|
|
|
|
(lldb::SBStream &, bool), description, stop_format);
|
|
|
|
|
2011-11-13 14:57:31 +08:00
|
|
|
Stream &strm = description.ref();
|
|
|
|
|
2016-06-11 01:22:26 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
2012-02-21 08:09:25 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
2015-01-28 09:18:01 +08:00
|
|
|
exe_ctx.GetThreadPtr()->DumpUsingSettingsFormat(strm,
|
2016-11-09 04:36:40 +08:00
|
|
|
LLDB_INVALID_THREAD_ID,
|
|
|
|
stop_format);
|
2015-01-28 09:18:01 +08:00
|
|
|
// strm.Printf("SBThread: tid = 0x%4.4" PRIx64,
|
|
|
|
// exe_ctx.GetThreadPtr()->GetID());
|
2010-10-26 11:11:13 +08:00
|
|
|
} else
|
2011-11-13 14:57:31 +08:00
|
|
|
strm.PutCString("No value");
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-10-26 11:11:13 +08:00
|
|
|
return true;
|
|
|
|
}
|
2013-11-06 08:04:44 +08:00
|
|
|
|
2013-11-13 07:33:32 +08:00
|
|
|
SBThread SBThread::GetExtendedBacktraceThread(const char *type) {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBThread, SBThread, GetExtendedBacktraceThread,
|
|
|
|
(const char *), type);
|
|
|
|
|
2016-05-19 13:13:57 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2013-11-06 08:04:44 +08:00
|
|
|
SBThread sb_origin_thread;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2019-04-09 09:33:23 +08:00
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
if (exe_ctx.HasThreadScope()) {
|
2013-11-11 13:19:34 +08:00
|
|
|
ThreadSP real_thread(exe_ctx.GetThreadSP());
|
2013-11-06 08:04:44 +08:00
|
|
|
if (real_thread) {
|
|
|
|
ConstString type_const(type);
|
2013-11-11 13:19:34 +08:00
|
|
|
Process *process = exe_ctx.GetProcessPtr();
|
|
|
|
if (process) {
|
|
|
|
SystemRuntime *runtime = process->GetSystemRuntime();
|
|
|
|
if (runtime) {
|
2013-11-13 07:33:32 +08:00
|
|
|
ThreadSP new_thread_sp(
|
|
|
|
runtime->GetExtendedBacktraceThread(real_thread, type_const));
|
2013-11-19 13:44:41 +08:00
|
|
|
if (new_thread_sp) {
|
|
|
|
// Save this in the Process' ExtendedThreadList so a strong
|
2018-05-01 00:49:04 +08:00
|
|
|
// pointer retains the object.
|
2013-11-19 13:44:41 +08:00
|
|
|
process->GetExtendedThreadList().AddThread(new_thread_sp);
|
|
|
|
sb_origin_thread.SetThread(new_thread_sp);
|
2013-11-06 08:04:44 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2013-11-06 08:04:44 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2013-11-06 08:04:44 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2013-11-06 08:04:44 +08:00
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(sb_origin_thread);
|
2013-11-06 08:04:44 +08:00
|
|
|
}
|
2013-11-16 09:24:22 +08:00
|
|
|
|
|
|
|
uint32_t SBThread::GetExtendedBacktraceOriginatingIndexID() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBThread,
|
|
|
|
GetExtendedBacktraceOriginatingIndexID);
|
|
|
|
|
2013-11-16 09:24:22 +08:00
|
|
|
ThreadSP thread_sp(m_opaque_sp->GetThreadSP());
|
|
|
|
if (thread_sp)
|
|
|
|
return thread_sp->GetExtendedBacktraceOriginatingIndexID();
|
|
|
|
return LLDB_INVALID_INDEX32;
|
|
|
|
}
|
2014-05-14 06:02:48 +08:00
|
|
|
|
2018-11-29 06:01:52 +08:00
|
|
|
SBValue SBThread::GetCurrentException() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::SBValue, SBThread, GetCurrentException);
|
|
|
|
|
2018-11-29 06:01:52 +08:00
|
|
|
ThreadSP thread_sp(m_opaque_sp->GetThreadSP());
|
2019-03-06 08:06:00 +08:00
|
|
|
if (!thread_sp)
|
|
|
|
return LLDB_RECORD_RESULT(SBValue());
|
2018-11-29 06:01:52 +08:00
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(SBValue(thread_sp->GetCurrentException()));
|
2018-11-29 06:01:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
SBThread SBThread::GetCurrentExceptionBacktrace() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::SBThread, SBThread,
|
|
|
|
GetCurrentExceptionBacktrace);
|
|
|
|
|
2018-11-29 06:01:52 +08:00
|
|
|
ThreadSP thread_sp(m_opaque_sp->GetThreadSP());
|
2019-03-06 08:06:00 +08:00
|
|
|
if (!thread_sp)
|
|
|
|
return LLDB_RECORD_RESULT(SBThread());
|
2018-11-29 06:01:52 +08:00
|
|
|
|
2019-03-06 08:06:00 +08:00
|
|
|
return LLDB_RECORD_RESULT(
|
|
|
|
SBThread(thread_sp->GetCurrentExceptionBacktrace()));
|
2018-12-20 10:01:59 +08:00
|
|
|
}
|
2018-11-29 06:01:52 +08:00
|
|
|
|
2014-05-14 06:02:48 +08:00
|
|
|
bool SBThread::SafeToCallFunctions() {
|
2019-03-06 08:06:00 +08:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(bool, SBThread, SafeToCallFunctions);
|
|
|
|
|
2014-05-14 06:02:48 +08:00
|
|
|
ThreadSP thread_sp(m_opaque_sp->GetThreadSP());
|
|
|
|
if (thread_sp)
|
|
|
|
return thread_sp->SafeToCallFunctions();
|
|
|
|
return true;
|
|
|
|
}
|
2014-09-30 07:17:18 +08:00
|
|
|
|
|
|
|
lldb_private::Thread *SBThread::operator->() {
|
Remove unneeded #ifdef SWIGs
Summary:
Some of these were present in files which should never be read by swig
(and we also had one in the interface file, which is only read by swig).
They are probably leftovers from the time when we were running swig over
lldb headers directly.
While writing this patch, I noticed that some of the #ifdefs were
guarding public functions that were operating on lldb_private data
types. While it wasn't strictly necessary for this patch, I made these
private, as nobody should really be accessing them. This can potentially
break existing code if it happened to use these methods, though it will
only break at build time -- if someone builds against an old header, he
should still be able to link to a new lldb library, since the functions
are still there.
We could keep these public for backward compatbility, but I would argue
that if anyone was actually using these functions for anything, his code
is already broken.
Reviewers: JDevlieghere, clayborg, jingham
Subscribers: lldb-commits
Differential Revision: https://reviews.llvm.org/D60400
llvm-svn: 357984
2019-04-09 17:03:43 +08:00
|
|
|
return get();
|
2014-09-30 07:17:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
lldb_private::Thread *SBThread::get() {
|
Remove unneeded #ifdef SWIGs
Summary:
Some of these were present in files which should never be read by swig
(and we also had one in the interface file, which is only read by swig).
They are probably leftovers from the time when we were running swig over
lldb headers directly.
While writing this patch, I noticed that some of the #ifdefs were
guarding public functions that were operating on lldb_private data
types. While it wasn't strictly necessary for this patch, I made these
private, as nobody should really be accessing them. This can potentially
break existing code if it happened to use these methods, though it will
only break at build time -- if someone builds against an old header, he
should still be able to link to a new lldb library, since the functions
are still there.
We could keep these public for backward compatbility, but I would argue
that if anyone was actually using these functions for anything, his code
is already broken.
Reviewers: JDevlieghere, clayborg, jingham
Subscribers: lldb-commits
Differential Revision: https://reviews.llvm.org/D60400
llvm-svn: 357984
2019-04-09 17:03:43 +08:00
|
|
|
return m_opaque_sp->GetThreadSP().get();
|
2014-09-30 07:17:18 +08:00
|
|
|
}
|
2019-03-20 01:13:13 +08:00
|
|
|
|
|
|
|
namespace lldb_private {
|
|
|
|
namespace repro {
|
|
|
|
|
|
|
|
template <>
|
|
|
|
void RegisterMethods<SBThread>(Registry &R) {
|
|
|
|
LLDB_REGISTER_STATIC_METHOD(const char *, SBThread, GetBroadcasterClassName,
|
|
|
|
());
|
|
|
|
LLDB_REGISTER_CONSTRUCTOR(SBThread, ());
|
|
|
|
LLDB_REGISTER_CONSTRUCTOR(SBThread, (const lldb::ThreadSP &));
|
|
|
|
LLDB_REGISTER_CONSTRUCTOR(SBThread, (const lldb::SBThread &));
|
|
|
|
LLDB_REGISTER_METHOD(const lldb::SBThread &,
|
|
|
|
SBThread, operator=,(const lldb::SBThread &));
|
|
|
|
LLDB_REGISTER_METHOD_CONST(lldb::SBQueue, SBThread, GetQueue, ());
|
|
|
|
LLDB_REGISTER_METHOD_CONST(bool, SBThread, IsValid, ());
|
|
|
|
LLDB_REGISTER_METHOD_CONST(bool, SBThread, operator bool, ());
|
|
|
|
LLDB_REGISTER_METHOD(void, SBThread, Clear, ());
|
|
|
|
LLDB_REGISTER_METHOD(lldb::StopReason, SBThread, GetStopReason, ());
|
|
|
|
LLDB_REGISTER_METHOD(size_t, SBThread, GetStopReasonDataCount, ());
|
|
|
|
LLDB_REGISTER_METHOD(uint64_t, SBThread, GetStopReasonDataAtIndex,
|
|
|
|
(uint32_t));
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBThread, GetStopReasonExtendedInfoAsJSON,
|
|
|
|
(lldb::SBStream &));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBThreadCollection, SBThread,
|
|
|
|
GetStopReasonExtendedBacktraces,
|
|
|
|
(lldb::InstrumentationRuntimeType));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBValue, SBThread, GetStopReturnValue, ());
|
|
|
|
LLDB_REGISTER_METHOD_CONST(lldb::tid_t, SBThread, GetThreadID, ());
|
|
|
|
LLDB_REGISTER_METHOD_CONST(uint32_t, SBThread, GetIndexID, ());
|
|
|
|
LLDB_REGISTER_METHOD_CONST(const char *, SBThread, GetName, ());
|
|
|
|
LLDB_REGISTER_METHOD_CONST(const char *, SBThread, GetQueueName, ());
|
|
|
|
LLDB_REGISTER_METHOD_CONST(lldb::queue_id_t, SBThread, GetQueueID, ());
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBThread, GetInfoItemByPathAsString,
|
|
|
|
(const char *, lldb::SBStream &));
|
|
|
|
LLDB_REGISTER_METHOD(void, SBThread, StepOver, (lldb::RunMode));
|
|
|
|
LLDB_REGISTER_METHOD(void, SBThread, StepOver,
|
|
|
|
(lldb::RunMode, lldb::SBError &));
|
|
|
|
LLDB_REGISTER_METHOD(void, SBThread, StepInto, (lldb::RunMode));
|
|
|
|
LLDB_REGISTER_METHOD(void, SBThread, StepInto,
|
|
|
|
(const char *, lldb::RunMode));
|
|
|
|
LLDB_REGISTER_METHOD(
|
|
|
|
void, SBThread, StepInto,
|
|
|
|
(const char *, uint32_t, lldb::SBError &, lldb::RunMode));
|
|
|
|
LLDB_REGISTER_METHOD(void, SBThread, StepOut, ());
|
|
|
|
LLDB_REGISTER_METHOD(void, SBThread, StepOut, (lldb::SBError &));
|
|
|
|
LLDB_REGISTER_METHOD(void, SBThread, StepOutOfFrame, (lldb::SBFrame &));
|
|
|
|
LLDB_REGISTER_METHOD(void, SBThread, StepOutOfFrame,
|
|
|
|
(lldb::SBFrame &, lldb::SBError &));
|
|
|
|
LLDB_REGISTER_METHOD(void, SBThread, StepInstruction, (bool));
|
|
|
|
LLDB_REGISTER_METHOD(void, SBThread, StepInstruction,
|
|
|
|
(bool, lldb::SBError &));
|
|
|
|
LLDB_REGISTER_METHOD(void, SBThread, RunToAddress, (lldb::addr_t));
|
|
|
|
LLDB_REGISTER_METHOD(void, SBThread, RunToAddress,
|
|
|
|
(lldb::addr_t, lldb::SBError &));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBError, SBThread, StepOverUntil,
|
|
|
|
(lldb::SBFrame &, lldb::SBFileSpec &, uint32_t));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBError, SBThread, StepUsingScriptedThreadPlan,
|
|
|
|
(const char *));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBError, SBThread, StepUsingScriptedThreadPlan,
|
|
|
|
(const char *, bool));
|
2019-10-04 06:50:18 +08:00
|
|
|
LLDB_REGISTER_METHOD(lldb::SBError, SBThread, StepUsingScriptedThreadPlan,
|
|
|
|
(const char *, SBStructuredData &, bool));
|
2019-03-20 01:13:13 +08:00
|
|
|
LLDB_REGISTER_METHOD(lldb::SBError, SBThread, JumpToLine,
|
|
|
|
(lldb::SBFileSpec &, uint32_t));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBError, SBThread, ReturnFromFrame,
|
|
|
|
(lldb::SBFrame &, lldb::SBValue &));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBError, SBThread, UnwindInnermostExpression,
|
|
|
|
());
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBThread, Suspend, ());
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBThread, Suspend, (lldb::SBError &));
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBThread, Resume, ());
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBThread, Resume, (lldb::SBError &));
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBThread, IsSuspended, ());
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBThread, IsStopped, ());
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBProcess, SBThread, GetProcess, ());
|
|
|
|
LLDB_REGISTER_METHOD(uint32_t, SBThread, GetNumFrames, ());
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBFrame, SBThread, GetFrameAtIndex, (uint32_t));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBFrame, SBThread, GetSelectedFrame, ());
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBFrame, SBThread, SetSelectedFrame, (uint32_t));
|
|
|
|
LLDB_REGISTER_STATIC_METHOD(bool, SBThread, EventIsThreadEvent,
|
|
|
|
(const lldb::SBEvent &));
|
|
|
|
LLDB_REGISTER_STATIC_METHOD(lldb::SBFrame, SBThread, GetStackFrameFromEvent,
|
|
|
|
(const lldb::SBEvent &));
|
|
|
|
LLDB_REGISTER_STATIC_METHOD(lldb::SBThread, SBThread, GetThreadFromEvent,
|
|
|
|
(const lldb::SBEvent &));
|
|
|
|
LLDB_REGISTER_METHOD_CONST(bool,
|
|
|
|
SBThread, operator==,(const lldb::SBThread &));
|
|
|
|
LLDB_REGISTER_METHOD_CONST(bool,
|
|
|
|
SBThread, operator!=,(const lldb::SBThread &));
|
|
|
|
LLDB_REGISTER_METHOD_CONST(bool, SBThread, GetStatus, (lldb::SBStream &));
|
|
|
|
LLDB_REGISTER_METHOD_CONST(bool, SBThread, GetDescription,
|
|
|
|
(lldb::SBStream &));
|
|
|
|
LLDB_REGISTER_METHOD_CONST(bool, SBThread, GetDescription,
|
|
|
|
(lldb::SBStream &, bool));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBThread, SBThread, GetExtendedBacktraceThread,
|
|
|
|
(const char *));
|
|
|
|
LLDB_REGISTER_METHOD(uint32_t, SBThread,
|
|
|
|
GetExtendedBacktraceOriginatingIndexID, ());
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBValue, SBThread, GetCurrentException, ());
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBThread, SBThread, GetCurrentExceptionBacktrace,
|
|
|
|
());
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBThread, SafeToCallFunctions, ());
|
[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(size_t, SBThread, GetStopDescription);
|
2019-03-20 01:13:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|