2010-06-09 00:52:24 +08:00
|
|
|
//===-- SBThread.cpp --------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-06-09 15:44:37 +08:00
|
|
|
#include "lldb/API/SBThread.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
#include "lldb/API/SBFileSpec.h"
|
2010-09-20 13:20:02 +08:00
|
|
|
#include "lldb/API/SBStream.h"
|
2016-09-07 04:57:50 +08:00
|
|
|
#include "lldb/API/SBSymbolContext.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"
|
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"
|
2016-09-07 04:57:50 +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"
|
2016-09-07 04:57:50 +08:00
|
|
|
#include "lldb/Target/SystemRuntime.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Target/Target.h"
|
2016-09-07 04:57:50 +08:00
|
|
|
#include "lldb/Target/Thread.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Target/ThreadPlan.h"
|
2016-09-07 04:57:50 +08:00
|
|
|
#include "lldb/Target/ThreadPlanStepInRange.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Target/ThreadPlanStepInstruction.h"
|
|
|
|
#include "lldb/Target/ThreadPlanStepOut.h"
|
|
|
|
#include "lldb/Target/ThreadPlanStepRange.h"
|
2016-09-07 04:57:50 +08:00
|
|
|
#include "lldb/Target/UnixSignals.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"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2010-06-09 15:44:37 +08:00
|
|
|
#include "lldb/API/SBAddress.h"
|
|
|
|
#include "lldb/API/SBDebugger.h"
|
2012-10-11 02:32:14 +08:00
|
|
|
#include "lldb/API/SBEvent.h"
|
2011-12-17 09:35:57 +08:00
|
|
|
#include "lldb/API/SBFrame.h"
|
2010-06-09 15:44:37 +08:00
|
|
|
#include "lldb/API/SBProcess.h"
|
2016-03-23 23:36:22 +08:00
|
|
|
#include "lldb/API/SBThreadCollection.h"
|
2014-09-30 07:17:18 +08:00
|
|
|
#include "lldb/API/SBThreadPlan.h"
|
2011-12-17 09:35:57 +08:00
|
|
|
#include "lldb/API/SBValue.h"
|
2017-05-29 16:25:46 +08:00
|
|
|
#include "lldb/lldb-enumerations.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
const char *SBThread::GetBroadcasterClassName() {
|
|
|
|
return Thread::GetStaticBroadcasterClass().AsCString();
|
2012-10-11 02:32:14 +08:00
|
|
|
}
|
|
|
|
|
2010-10-31 11:01:06 +08:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Constructors
|
|
|
|
//----------------------------------------------------------------------
|
2016-09-07 04:57:50 +08:00
|
|
|
SBThread::SBThread() : m_opaque_sp(new ExecutionContextRef()) {}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
SBThread::SBThread(const ThreadSP &lldb_object_sp)
|
|
|
|
: m_opaque_sp(new ExecutionContextRef(lldb_object_sp)) {}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
SBThread::SBThread(const SBThread &rhs)
|
|
|
|
: m_opaque_sp(new ExecutionContextRef(*rhs.m_opaque_sp)) {}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2010-10-31 11:01:06 +08:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Assignment operator
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
const lldb::SBThread &SBThread::operator=(const SBThread &rhs) {
|
|
|
|
if (this != &rhs)
|
|
|
|
*m_opaque_sp = *rhs.m_opaque_sp;
|
|
|
|
return *this;
|
2010-10-31 11:01:06 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Destructor
|
|
|
|
//----------------------------------------------------------------------
|
2016-09-07 04:57:50 +08:00
|
|
|
SBThread::~SBThread() {}
|
|
|
|
|
|
|
|
lldb::SBQueue SBThread::GetQueue() const {
|
|
|
|
SBQueue sb_queue;
|
|
|
|
QueueSP queue_sp;
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::GetQueue() => error: process is running",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
2014-04-25 08:01:15 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2014-04-25 08:01:15 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::GetQueue () => SBQueue(%p)",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()),
|
|
|
|
static_cast<void *>(queue_sp.get()));
|
2016-05-07 08:54:56 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
return sb_queue;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool SBThread::IsValid() const {
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
Target *target = exe_ctx.GetTargetPtr();
|
|
|
|
Process *process = exe_ctx.GetProcessPtr();
|
|
|
|
if (target && process) {
|
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&process->GetRunLock()))
|
|
|
|
return m_opaque_sp->GetThreadSP().get() != NULL;
|
|
|
|
}
|
|
|
|
// Without a valid target & process, this thread can't be valid.
|
|
|
|
return false;
|
2010-07-31 04:12:55 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
void SBThread::Clear() { m_opaque_sp->Clear(); }
|
2010-07-31 04:12:55 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
StopReason SBThread::GetStopReason() {
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
StopReason reason = eStopReasonInvalid;
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2012-08-23 05:34:33 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
return exe_ctx.GetThreadPtr()->GetStopReason();
|
|
|
|
} else {
|
|
|
|
if (log)
|
|
|
|
log->Printf(
|
|
|
|
"SBThread(%p)::GetStopReason() => error: process is running",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::GetStopReason () => %s",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()),
|
|
|
|
Thread::StopReasonAsCString(reason));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
return reason;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
size_t SBThread::GetStopReasonDataCount() {
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
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:
|
|
|
|
case eStopReasonExec:
|
|
|
|
case eStopReasonPlanComplete:
|
|
|
|
case eStopReasonThreadExiting:
|
|
|
|
case eStopReasonInstrumentation:
|
|
|
|
// There is no data for these stop reasons.
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
case eStopReasonWatchpoint:
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
case eStopReasonSignal:
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
case eStopReasonException:
|
|
|
|
return 1;
|
2012-04-06 10:17:47 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::GetStopReasonDataCount() => error: process "
|
|
|
|
"is running",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
2010-11-19 02:52:36 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
return 0;
|
2010-11-19 02:52:36 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
uint64_t SBThread::GetStopReasonDataAtIndex(uint32_t idx) {
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
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:
|
|
|
|
case eStopReasonExec:
|
|
|
|
case eStopReasonPlanComplete:
|
|
|
|
case eStopReasonThreadExiting:
|
|
|
|
case eStopReasonInstrumentation:
|
|
|
|
// There is no data for these stop reasons.
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
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();
|
|
|
|
} else {
|
|
|
|
// 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
|
|
|
}
|
|
|
|
return LLDB_INVALID_BREAK_ID;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case eStopReasonWatchpoint:
|
|
|
|
return stop_info_sp->GetValue();
|
|
|
|
|
|
|
|
case eStopReasonSignal:
|
|
|
|
return stop_info_sp->GetValue();
|
|
|
|
|
|
|
|
case eStopReasonException:
|
|
|
|
return stop_info_sp->GetValue();
|
2010-11-19 02:52:36 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::GetStopReasonDataAtIndex() => error: "
|
|
|
|
"process is running",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
2010-11-19 02:52:36 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
return 0;
|
2010-11-19 02:52:36 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool SBThread::GetStopReasonExtendedInfoAsJSON(lldb::SBStream &stream) {
|
|
|
|
Stream &strm = stream.ref();
|
|
|
|
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
if (!exe_ctx.HasThreadScope())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
StopInfoSP stop_info = exe_ctx.GetThreadPtr()->GetStopInfo();
|
|
|
|
StructuredData::ObjectSP info = stop_info->GetExtendedInfo();
|
|
|
|
if (!info)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
info->Dump(strm);
|
|
|
|
|
|
|
|
return true;
|
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
|
|
|
}
|
|
|
|
|
2016-03-23 23:36:22 +08:00
|
|
|
SBThreadCollection
|
2016-09-07 04:57:50 +08:00
|
|
|
SBThread::GetStopReasonExtendedBacktraces(InstrumentationRuntimeType type) {
|
|
|
|
ThreadCollectionSP threads;
|
|
|
|
threads.reset(new ThreadCollection());
|
|
|
|
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
if (!exe_ctx.HasThreadScope())
|
|
|
|
return threads;
|
|
|
|
|
|
|
|
ProcessSP process_sp = exe_ctx.GetProcessSP();
|
|
|
|
|
|
|
|
StopInfoSP stop_info = exe_ctx.GetThreadPtr()->GetStopInfo();
|
|
|
|
StructuredData::ObjectSP info = stop_info->GetExtendedInfo();
|
|
|
|
if (!info)
|
|
|
|
return threads;
|
|
|
|
|
|
|
|
return process_sp->GetInstrumentationRuntime(type)
|
|
|
|
->GetBacktracesFromExtendedStopInfo(info);
|
2016-03-23 23:36:22 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
size_t SBThread::GetStopDescription(char *dst, size_t dst_len) {
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
|
|
|
|
StopInfoSP stop_info_sp = exe_ctx.GetThreadPtr()->GetStopInfo();
|
|
|
|
if (stop_info_sp) {
|
|
|
|
const char *stop_desc = stop_info_sp->GetDescription();
|
|
|
|
if (stop_desc) {
|
|
|
|
if (log)
|
|
|
|
log->Printf(
|
|
|
|
"SBThread(%p)::GetStopDescription (dst, dst_len) => \"%s\"",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()), stop_desc);
|
|
|
|
if (dst)
|
|
|
|
return ::snprintf(dst, dst_len, "%s", stop_desc);
|
|
|
|
else {
|
|
|
|
// NULL dst passed in, return the length needed to contain the
|
|
|
|
// description
|
|
|
|
return ::strlen(stop_desc) + 1; // Include the NULL byte for size
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
size_t stop_desc_len = 0;
|
|
|
|
switch (stop_info_sp->GetStopReason()) {
|
|
|
|
case eStopReasonTrace:
|
|
|
|
case eStopReasonPlanComplete: {
|
|
|
|
static char trace_desc[] = "step";
|
|
|
|
stop_desc = trace_desc;
|
|
|
|
stop_desc_len =
|
|
|
|
sizeof(trace_desc); // Include the NULL byte for size
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case eStopReasonBreakpoint: {
|
|
|
|
static char bp_desc[] = "breakpoint hit";
|
|
|
|
stop_desc = bp_desc;
|
|
|
|
stop_desc_len = sizeof(bp_desc); // Include the NULL byte for size
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case eStopReasonWatchpoint: {
|
|
|
|
static char wp_desc[] = "watchpoint hit";
|
|
|
|
stop_desc = wp_desc;
|
|
|
|
stop_desc_len = sizeof(wp_desc); // Include the NULL byte for size
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case eStopReasonSignal: {
|
|
|
|
stop_desc =
|
|
|
|
exe_ctx.GetProcessPtr()->GetUnixSignals()->GetSignalAsCString(
|
|
|
|
stop_info_sp->GetValue());
|
|
|
|
if (stop_desc == NULL || stop_desc[0] == '\0') {
|
|
|
|
static char signal_desc[] = "signal";
|
|
|
|
stop_desc = signal_desc;
|
|
|
|
stop_desc_len =
|
|
|
|
sizeof(signal_desc); // Include the NULL byte for size
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case eStopReasonException: {
|
|
|
|
char exc_desc[] = "exception";
|
|
|
|
stop_desc = exc_desc;
|
|
|
|
stop_desc_len = sizeof(exc_desc); // Include the NULL byte for size
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case eStopReasonExec: {
|
|
|
|
char exc_desc[] = "exec";
|
|
|
|
stop_desc = exc_desc;
|
|
|
|
stop_desc_len = sizeof(exc_desc); // Include the NULL byte for size
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case eStopReasonThreadExiting: {
|
|
|
|
char limbo_desc[] = "thread exiting";
|
|
|
|
stop_desc = limbo_desc;
|
|
|
|
stop_desc_len = sizeof(limbo_desc);
|
|
|
|
} break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stop_desc && stop_desc[0]) {
|
2012-04-06 10:17:47 +08:00
|
|
|
if (log)
|
2016-09-07 04:57:50 +08:00
|
|
|
log->Printf(
|
|
|
|
"SBThread(%p)::GetStopDescription (dst, dst_len) => '%s'",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()), stop_desc);
|
|
|
|
|
|
|
|
if (dst)
|
|
|
|
return ::snprintf(dst, dst_len, "%s", stop_desc) +
|
|
|
|
1; // Include the NULL byte
|
|
|
|
|
|
|
|
if (stop_desc_len == 0)
|
|
|
|
stop_desc_len = ::strlen(stop_desc) + 1; // Include the NULL byte
|
|
|
|
|
|
|
|
return stop_desc_len;
|
|
|
|
}
|
2012-04-06 10:17:47 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
if (log)
|
|
|
|
log->Printf(
|
|
|
|
"SBThread(%p)::GetStopDescription() => error: process is running",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
if (dst)
|
|
|
|
*dst = 0;
|
|
|
|
return 0;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
SBValue SBThread::GetStopReturnValue() {
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
ValueObjectSP return_valobj_sp;
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (log)
|
|
|
|
log->Printf(
|
|
|
|
"SBThread(%p)::GetStopReturnValue() => error: process is running",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
2011-12-17 09:35:57 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::GetStopReturnValue () => %s",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()),
|
|
|
|
return_valobj_sp.get() ? return_valobj_sp->GetValueAsCString()
|
|
|
|
: "<no return value>");
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
return SBValue(return_valobj_sp);
|
2011-12-17 09:35:57 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
void SBThread::SetThread(const ThreadSP &lldb_object_sp) {
|
|
|
|
m_opaque_sp->SetThreadSP(lldb_object_sp);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
lldb::tid_t SBThread::GetThreadID() const {
|
|
|
|
ThreadSP thread_sp(m_opaque_sp->GetThreadSP());
|
|
|
|
if (thread_sp)
|
|
|
|
return thread_sp->GetID();
|
|
|
|
return LLDB_INVALID_THREAD_ID;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
uint32_t SBThread::GetIndexID() const {
|
|
|
|
ThreadSP thread_sp(m_opaque_sp->GetThreadSP());
|
|
|
|
if (thread_sp)
|
|
|
|
return thread_sp->GetIndexID();
|
|
|
|
return LLDB_INVALID_INDEX32;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2012-02-21 08:09:25 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
const char *SBThread::GetName() const {
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
const char *name = NULL;
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
name = exe_ctx.GetThreadPtr()->GetName();
|
|
|
|
} else {
|
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::GetName() => error: process is running",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::GetName () => %s",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()),
|
|
|
|
name ? name : "NULL");
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
return name;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
const char *SBThread::GetQueueName() const {
|
|
|
|
const char *name = NULL;
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
name = exe_ctx.GetThreadPtr()->GetQueueName();
|
|
|
|
} else {
|
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::GetQueueName() => error: process is running",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::GetQueueName () => %s",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()),
|
|
|
|
name ? name : "NULL");
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
return name;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
lldb::queue_id_t SBThread::GetQueueID() const {
|
|
|
|
queue_id_t id = LLDB_INVALID_QUEUE_ID;
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
id = exe_ctx.GetThreadPtr()->GetQueueID();
|
|
|
|
} else {
|
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::GetQueueID() => error: process is running",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
2013-10-22 07:52:54 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::GetQueueID () => 0x%" PRIx64,
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()), id);
|
2013-10-22 07:52:54 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
return id;
|
2013-10-22 07:52:54 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool SBThread::GetInfoItemByPathAsString(const char *path, SBStream &strm) {
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
bool success = false;
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
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());
|
2016-09-07 04:57:50 +08:00
|
|
|
success = true;
|
|
|
|
}
|
2017-05-29 16:25:46 +08:00
|
|
|
if (node->GetType() == eStructuredDataTypeInteger) {
|
2016-09-07 04:57:50 +08:00
|
|
|
strm.Printf("0x%" PRIx64, node->GetAsInteger()->GetValue());
|
|
|
|
success = true;
|
|
|
|
}
|
2017-05-29 16:25:46 +08:00
|
|
|
if (node->GetType() == eStructuredDataTypeFloat) {
|
2016-09-07 04:57:50 +08:00
|
|
|
strm.Printf("0x%f", node->GetAsFloat()->GetValue());
|
|
|
|
success = true;
|
|
|
|
}
|
2017-05-29 16:25:46 +08:00
|
|
|
if (node->GetType() == eStructuredDataTypeBoolean) {
|
2016-09-07 04:57:50 +08:00
|
|
|
if (node->GetAsBoolean()->GetValue() == true)
|
|
|
|
strm.Printf("true");
|
|
|
|
else
|
|
|
|
strm.Printf("false");
|
|
|
|
success = true;
|
|
|
|
}
|
2017-05-29 16:25:46 +08:00
|
|
|
if (node->GetType() == eStructuredDataTypeNull) {
|
2016-09-07 04:57:50 +08:00
|
|
|
strm.Printf("null");
|
|
|
|
success = true;
|
|
|
|
}
|
2014-06-13 10:37:02 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::GetInfoItemByPathAsString() => error: "
|
|
|
|
"process is running",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
2014-06-13 10:37:02 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2014-06-13 10:37:02 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log)
|
2017-02-02 11:02:51 +08:00
|
|
|
log->Printf("SBThread(%p)::GetInfoItemByPathAsString (\"%s\") => \"%s\"",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()), path, strm.GetData());
|
2014-06-13 10:37:02 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
return success;
|
2014-06-13 10:37:02 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
SBError SBThread::ResumeNewPlan(ExecutionContext &exe_ctx,
|
|
|
|
ThreadPlan *new_plan) {
|
|
|
|
SBError sb_error;
|
2014-06-13 10:37:02 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
Process *process = exe_ctx.GetProcessPtr();
|
|
|
|
if (!process) {
|
|
|
|
sb_error.SetErrorString("No process in SBThread::ResumeNewPlan");
|
|
|
|
return sb_error;
|
|
|
|
}
|
2012-05-04 05:19:36 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
|
|
|
if (!thread) {
|
|
|
|
sb_error.SetErrorString("No thread in SBThread::ResumeNewPlan");
|
2012-05-04 05:19:36 +08:00
|
|
|
return sb_error;
|
2016-09-07 04:57:50 +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.
|
2016-09-07 04:57:50 +08:00
|
|
|
if (new_plan != NULL) {
|
|
|
|
new_plan->SetIsMasterPlan(true);
|
|
|
|
new_plan->SetOkayToDiscard(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Why do we need to set the current thread by ID here???
|
|
|
|
process->GetThreadList().SetSelectedThreadByID(thread->GetID());
|
|
|
|
|
|
|
|
if (process->GetTarget().GetDebugger().GetAsyncExecution())
|
|
|
|
sb_error.ref() = process->Resume();
|
|
|
|
else
|
|
|
|
sb_error.ref() = process->ResumeSynchronous(NULL);
|
|
|
|
|
|
|
|
return sb_error;
|
2012-05-04 05:19:36 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
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) {
|
2016-09-07 04:57:50 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2016-09-07 04:57:50 +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
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::StepOver (stop_other_threads='%s')",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()),
|
|
|
|
Thread::RunModeAsCString(stop_other_threads));
|
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
|
|
|
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
|
|
|
|
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,
|
|
|
|
avoid_no_debug);
|
|
|
|
} else {
|
|
|
|
new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction(
|
|
|
|
true, abort_other_plans, stop_other_threads);
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
void SBThread::StepInto(lldb::RunMode stop_other_threads) {
|
|
|
|
StepInto(NULL, 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
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
void SBThread::StepInto(const char *target_name,
|
|
|
|
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
|
2016-09-07 04:57:50 +08:00
|
|
|
StepInto(target_name, LLDB_INVALID_LINE_NUMBER, error, stop_other_threads);
|
2016-02-13 08:31:47 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
void SBThread::StepInto(const char *target_name, uint32_t end_line,
|
|
|
|
SBError &error, lldb::RunMode stop_other_threads) {
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2016-09-07 04:57:50 +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
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf(
|
|
|
|
"SBThread(%p)::StepInto (target_name='%s', stop_other_threads='%s')",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()),
|
|
|
|
target_name ? target_name : "<NULL>",
|
|
|
|
Thread::RunModeAsCString(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
|
|
|
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;
|
|
|
|
|
|
|
|
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,
|
|
|
|
step_in_avoids_code_without_debug_info,
|
|
|
|
step_out_avoids_code_without_debug_info);
|
|
|
|
} else {
|
|
|
|
new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction(
|
|
|
|
false, abort_other_plans, stop_other_threads);
|
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
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
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) {
|
2016-09-07 04:57:50 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2016-09-07 04:57:50 +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
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::StepOut ()",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
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
|
|
|
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;
|
|
|
|
ThreadPlanSP new_plan_sp(thread->QueueThreadPlanForStepOut(
|
|
|
|
abort_other_plans, NULL, false, stop_other_threads, eVoteYes,
|
|
|
|
eVoteNoOpinion, 0, avoid_no_debug));
|
|
|
|
|
|
|
|
error = ResumeNewPlan(exe_ctx, new_plan_sp.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
void SBThread::StepOutOfFrame(SBFrame &sb_frame) {
|
|
|
|
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) {
|
2016-09-07 04:57:50 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2016-09-07 04:57:50 +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
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (!sb_frame.IsValid()) {
|
2011-01-21 14:11:58 +08:00
|
|
|
if (log)
|
2016-09-07 04:57:50 +08:00
|
|
|
log->Printf(
|
|
|
|
"SBThread(%p)::StepOutOfFrame passed an invalid frame, returning.",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
StackFrameSP frame_sp(sb_frame.GetFrameSP());
|
|
|
|
if (log) {
|
|
|
|
SBStream frame_desc_strm;
|
|
|
|
sb_frame.GetDescription(frame_desc_strm);
|
|
|
|
log->Printf("SBThread(%p)::StepOutOfFrame (frame = SBFrame(%p): %s)",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()),
|
|
|
|
static_cast<void *>(frame_sp.get()), frame_desc_strm.GetData());
|
|
|
|
}
|
|
|
|
|
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()) {
|
|
|
|
log->Printf("SBThread(%p)::StepOutOfFrame passed a frame from another "
|
|
|
|
"thread (0x%" PRIx64 " vrs. 0x%" PRIx64 ", returning.",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()),
|
|
|
|
sb_frame.GetThread().GetThreadID(), thread->GetID());
|
|
|
|
error.SetErrorString("passed a frame from another thread");
|
|
|
|
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
|
|
|
|
|
|
|
ThreadPlanSP new_plan_sp(thread->QueueThreadPlanForStepOut(
|
|
|
|
abort_other_plans, NULL, false, stop_other_threads, eVoteYes,
|
|
|
|
eVoteNoOpinion, frame_sp->GetFrameIndex()));
|
|
|
|
|
|
|
|
error = ResumeNewPlan(exe_ctx, new_plan_sp.get());
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
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) {
|
2016-09-07 04:57:50 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2016-09-07 04:57:50 +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
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::StepInstruction (step_over=%i)",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()), step_over);
|
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
|
|
|
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
|
|
|
|
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
|
|
|
ThreadPlanSP new_plan_sp(
|
|
|
|
thread->QueueThreadPlanForStepSingleInstruction(step_over, true, true));
|
|
|
|
|
|
|
|
error = ResumeNewPlan(exe_ctx, new_plan_sp.get());
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
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) {
|
2016-09-07 04:57:50 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2016-09-07 04:57:50 +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
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::RunToAddress (addr=0x%" PRIx64 ")",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()), addr);
|
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
|
|
|
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
|
|
|
|
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(
|
|
|
|
abort_other_plans, target_addr, stop_other_threads));
|
|
|
|
|
|
|
|
error = ResumeNewPlan(exe_ctx, new_plan_sp.get());
|
2011-01-21 14:11:58 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
SBError SBThread::StepOverUntil(lldb::SBFrame &sb_frame,
|
|
|
|
lldb::SBFileSpec &sb_file_spec, uint32_t line) {
|
|
|
|
SBError sb_error;
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
char path[PATH_MAX];
|
|
|
|
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
StackFrameSP frame_sp(sb_frame.GetFrameSP());
|
|
|
|
|
|
|
|
if (log) {
|
|
|
|
SBStream frame_desc_strm;
|
|
|
|
sb_frame.GetDescription(frame_desc_strm);
|
|
|
|
sb_file_spec->GetPath(path, sizeof(path));
|
|
|
|
log->Printf("SBThread(%p)::StepOverUntil (frame = SBFrame(%p): %s, "
|
|
|
|
"file+line = %s:%u)",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()),
|
|
|
|
static_cast<void *>(frame_sp.get()), frame_desc_strm.GetData(),
|
|
|
|
path, line);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
Target *target = exe_ctx.GetTargetPtr();
|
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
2012-01-30 15:41:31 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (line == 0) {
|
|
|
|
sb_error.SetErrorString("invalid line argument");
|
|
|
|
return sb_error;
|
2011-01-21 14:11:58 +08:00
|
|
|
}
|
2012-01-30 10:53:15 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (!frame_sp) {
|
|
|
|
frame_sp = thread->GetSelectedFrame();
|
|
|
|
if (!frame_sp)
|
|
|
|
frame_sp = thread->GetStackFrameAtIndex(0);
|
|
|
|
}
|
2011-01-21 14:11:58 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
SymbolContext frame_sc;
|
|
|
|
if (!frame_sp) {
|
|
|
|
sb_error.SetErrorString("no valid frames in thread to step");
|
|
|
|
return sb_error;
|
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2016-09-07 04:57:50 +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
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (frame_sc.comp_unit == NULL) {
|
|
|
|
sb_error.SetErrorStringWithFormat(
|
|
|
|
"frame %u doesn't have debug information", frame_sp->GetFrameIndex());
|
|
|
|
return sb_error;
|
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
FileSpec step_file_spec;
|
|
|
|
if (sb_file_spec.IsValid()) {
|
|
|
|
// The file spec passed in was valid, so use it
|
|
|
|
step_file_spec = sb_file_spec.ref();
|
|
|
|
} else {
|
|
|
|
if (frame_sc.line_entry.IsValid())
|
|
|
|
step_file_spec = frame_sc.line_entry.file;
|
|
|
|
else {
|
|
|
|
sb_error.SetErrorString("invalid file argument or no file for frame");
|
|
|
|
return sb_error;
|
|
|
|
}
|
|
|
|
}
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2016-09-07 04:57:50 +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
|
|
|
|
// 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
|
|
|
|
|
|
|
bool all_in_function = true;
|
|
|
|
AddressRange fun_range = frame_sc.function->GetAddressRange();
|
|
|
|
|
|
|
|
std::vector<addr_t> step_over_until_addrs;
|
|
|
|
const bool abort_other_plans = false;
|
|
|
|
const bool stop_other_threads = false;
|
|
|
|
const bool check_inlines = true;
|
|
|
|
const bool exact = false;
|
|
|
|
|
|
|
|
SymbolContextList sc_list;
|
|
|
|
const uint32_t num_matches = frame_sc.comp_unit->ResolveSymbolContext(
|
|
|
|
step_file_spec, line, check_inlines, exact, eSymbolContextLineEntry,
|
|
|
|
sc_list);
|
|
|
|
if (num_matches > 0) {
|
|
|
|
SymbolContext sc;
|
|
|
|
for (uint32_t i = 0; i < num_matches; ++i) {
|
|
|
|
if (sc_list.GetContextAtIndex(i, sc)) {
|
|
|
|
addr_t step_addr =
|
|
|
|
sc.line_entry.range.GetBaseAddress().GetLoadAddress(target);
|
|
|
|
if (step_addr != LLDB_INVALID_ADDRESS) {
|
|
|
|
if (fun_range.ContainsLoadAddress(step_addr, target))
|
|
|
|
step_over_until_addrs.push_back(step_addr);
|
2011-05-08 08:56:32 +08:00
|
|
|
else
|
2016-09-07 04:57:50 +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
|
|
|
|
|
|
|
if (step_over_until_addrs.empty()) {
|
|
|
|
if (all_in_function) {
|
|
|
|
step_file_spec.GetPath(path, sizeof(path));
|
|
|
|
sb_error.SetErrorStringWithFormat("No line entries for %s:%u", path,
|
|
|
|
line);
|
|
|
|
} else
|
|
|
|
sb_error.SetErrorString("step until target not in current function");
|
|
|
|
} else {
|
|
|
|
ThreadPlanSP new_plan_sp(thread->QueueThreadPlanForStepUntil(
|
|
|
|
abort_other_plans, &step_over_until_addrs[0],
|
|
|
|
step_over_until_addrs.size(), stop_other_threads,
|
|
|
|
frame_sp->GetFrameIndex()));
|
|
|
|
|
|
|
|
sb_error = ResumeNewPlan(exe_ctx, new_plan_sp.get());
|
2011-01-21 14:11:58 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
} else {
|
|
|
|
sb_error.SetErrorString("this SBThread object is invalid");
|
|
|
|
}
|
|
|
|
return sb_error;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
SBError SBThread::StepUsingScriptedThreadPlan(const char *script_class_name) {
|
|
|
|
return StepUsingScriptedThreadPlan(script_class_name, true);
|
2016-08-06 06:06:12 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
SBError SBThread::StepUsingScriptedThreadPlan(const char *script_class_name,
|
|
|
|
bool resume_immediately) {
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
SBError sb_error;
|
2014-09-30 07:17:18 +08:00
|
|
|
|
2016-09-07 04:57:50 +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
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log) {
|
|
|
|
log->Printf("SBThread(%p)::StepUsingScriptedThreadPlan: class name: %s",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()), script_class_name);
|
|
|
|
}
|
2014-09-30 07:17:18 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (!exe_ctx.HasThreadScope()) {
|
|
|
|
sb_error.SetErrorString("this SBThread object is invalid");
|
|
|
|
return sb_error;
|
|
|
|
}
|
2014-09-30 07:17:18 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
|
|
|
ThreadPlanSP thread_plan_sp =
|
|
|
|
thread->QueueThreadPlanForStepScripted(false, script_class_name, false);
|
2014-09-30 07:17:18 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (!thread_plan_sp) {
|
|
|
|
sb_error.SetErrorStringWithFormat(
|
|
|
|
"Error queueing thread plan for class: %s", script_class_name);
|
|
|
|
return sb_error;
|
|
|
|
}
|
2014-09-30 07:17:18 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (!resume_immediately) {
|
2014-09-30 07:17:18 +08:00
|
|
|
return sb_error;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2014-09-30 07:17:18 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (thread_plan_sp)
|
|
|
|
sb_error = ResumeNewPlan(exe_ctx, thread_plan_sp.get());
|
|
|
|
else {
|
|
|
|
sb_error.SetErrorStringWithFormat(
|
|
|
|
"Error resuming thread plan for class: %s.", script_class_name);
|
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::StepUsingScriptedThreadPlan: Error queuing "
|
|
|
|
"thread plan for class: %s",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()),
|
|
|
|
script_class_name);
|
|
|
|
}
|
2013-09-12 10:20:34 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
return sb_error;
|
|
|
|
}
|
2013-09-12 10:20:34 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
SBError SBThread::JumpToLine(lldb::SBFileSpec &file_spec, uint32_t line) {
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
SBError sb_error;
|
2013-09-12 10:20:34 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2013-09-12 10:20:34 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::JumpToLine (file+line = %s:%u)",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()),
|
|
|
|
file_spec->GetPath().c_str(), line);
|
2013-09-12 10:20:34 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (!exe_ctx.HasThreadScope()) {
|
|
|
|
sb_error.SetErrorString("this SBThread object is invalid");
|
2013-09-12 10:20:34 +08:00
|
|
|
return sb_error;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
|
|
|
|
2017-05-12 12:51:55 +08:00
|
|
|
Status err = thread->JumpToLine(file_spec.get(), line, true);
|
2016-09-07 04:57:50 +08:00
|
|
|
sb_error.SetError(err);
|
|
|
|
return sb_error;
|
2013-09-12 10:20:34 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
SBError SBThread::ReturnFromFrame(SBFrame &frame, SBValue &return_value) {
|
|
|
|
SBError sb_error;
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
2012-09-12 08:40:39 +08:00
|
|
|
|
2016-09-07 04:57:50 +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
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::ReturnFromFrame (frame=%d)",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()),
|
|
|
|
frame.GetFrameID());
|
2014-04-04 12:06:10 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
|
|
|
sb_error.SetError(
|
|
|
|
thread->ReturnFromFrame(frame.GetFrameSP(), return_value.GetSP()));
|
|
|
|
}
|
|
|
|
|
|
|
|
return sb_error;
|
2012-09-12 08:40:39 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
SBError SBThread::UnwindInnermostExpression() {
|
|
|
|
SBError sb_error;
|
2016-07-08 10:12:05 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
2016-07-08 10:12:05 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-07-08 10:12:05 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::UnwindExpressionEvaluation",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
2016-07-08 10:12:05 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
Thread *thread = exe_ctx.GetThreadPtr();
|
|
|
|
sb_error.SetError(thread->UnwindInnermostExpression());
|
|
|
|
if (sb_error.Success())
|
|
|
|
thread->SetSelectedFrameByIndex(0, false);
|
|
|
|
}
|
2016-07-08 10:12:05 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
return sb_error;
|
2016-07-08 10:12:05 +08:00
|
|
|
}
|
2011-01-21 14:11:58 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
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) {
|
2016-09-07 04:57:50 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
bool result = false;
|
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
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");
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::Suspend() => error: process is running",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
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");
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::Suspend() => %i",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()), result);
|
|
|
|
return result;
|
2011-01-12 10:25:42 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
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) {
|
2016-09-07 04:57:50 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
bool result = false;
|
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
const bool override_suspend = true;
|
|
|
|
exe_ctx.GetThreadPtr()->SetResumeState(eStateRunning, override_suspend);
|
|
|
|
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");
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::Resume() => error: process is running",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
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");
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::Resume() => %i",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()), result);
|
|
|
|
return result;
|
2011-01-12 10:25:42 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool SBThread::IsSuspended() {
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-06-11 01:22:26 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (exe_ctx.HasThreadScope())
|
|
|
|
return exe_ctx.GetThreadPtr()->GetResumeState() == eStateSuspended;
|
|
|
|
return false;
|
2011-01-12 10:25:42 +08:00
|
|
|
}
|
2013-04-16 07:33:53 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool SBThread::IsStopped() {
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-06-11 01:22:26 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (exe_ctx.HasThreadScope())
|
|
|
|
return StateIsStoppedState(exe_ctx.GetThreadPtr()->GetState(), true);
|
|
|
|
return false;
|
2013-04-16 07:33:53 +08:00
|
|
|
}
|
2011-01-12 10:25:42 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
SBProcess SBThread::GetProcess() {
|
|
|
|
SBProcess sb_process;
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
// Have to go up to the target so we can get a shared pointer to our
|
|
|
|
// process...
|
|
|
|
sb_process.SetSP(exe_ctx.GetProcessSP());
|
|
|
|
}
|
|
|
|
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
if (log) {
|
|
|
|
SBStream frame_desc_strm;
|
|
|
|
sb_process.GetDescription(frame_desc_strm);
|
|
|
|
log->Printf("SBThread(%p)::GetProcess () => SBProcess(%p): %s",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()),
|
|
|
|
static_cast<void *>(sb_process.GetSP().get()),
|
|
|
|
frame_desc_strm.GetData());
|
|
|
|
}
|
|
|
|
|
|
|
|
return sb_process;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
uint32_t SBThread::GetNumFrames() {
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
|
|
|
|
uint32_t num_frames = 0;
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
num_frames = exe_ctx.GetThreadPtr()->GetStackFrameCount();
|
|
|
|
} else {
|
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::GetNumFrames() => error: process is running",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::GetNumFrames () => %u",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()), num_frames);
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
return num_frames;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
SBFrame SBThread::GetFrameAtIndex(uint32_t idx) {
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
|
|
|
|
SBFrame sb_frame;
|
|
|
|
StackFrameSP frame_sp;
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
frame_sp = exe_ctx.GetThreadPtr()->GetStackFrameAtIndex(idx);
|
|
|
|
sb_frame.SetFrameSP(frame_sp);
|
|
|
|
} else {
|
|
|
|
if (log)
|
|
|
|
log->Printf(
|
|
|
|
"SBThread(%p)::GetFrameAtIndex() => error: process is running",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log) {
|
|
|
|
SBStream frame_desc_strm;
|
|
|
|
sb_frame.GetDescription(frame_desc_strm);
|
|
|
|
log->Printf("SBThread(%p)::GetFrameAtIndex (idx=%d) => SBFrame(%p): %s",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()), idx,
|
|
|
|
static_cast<void *>(frame_sp.get()), frame_desc_strm.GetData());
|
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
return sb_frame;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
lldb::SBFrame SBThread::GetSelectedFrame() {
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
|
|
|
|
SBFrame sb_frame;
|
|
|
|
StackFrameSP frame_sp;
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
frame_sp = exe_ctx.GetThreadPtr()->GetSelectedFrame();
|
|
|
|
sb_frame.SetFrameSP(frame_sp);
|
|
|
|
} else {
|
|
|
|
if (log)
|
|
|
|
log->Printf(
|
|
|
|
"SBThread(%p)::GetSelectedFrame() => error: process is running",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2010-12-17 10:26:24 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (log) {
|
|
|
|
SBStream frame_desc_strm;
|
|
|
|
sb_frame.GetDescription(frame_desc_strm);
|
|
|
|
log->Printf("SBThread(%p)::GetSelectedFrame () => SBFrame(%p): %s",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()),
|
|
|
|
static_cast<void *>(frame_sp.get()), frame_desc_strm.GetData());
|
|
|
|
}
|
2010-12-17 10:26:24 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
return sb_frame;
|
2010-12-17 10:26:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
lldb::SBFrame SBThread::SetSelectedFrame(uint32_t idx) {
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
|
|
|
|
SBFrame sb_frame;
|
|
|
|
StackFrameSP frame_sp;
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
|
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (log)
|
|
|
|
log->Printf(
|
|
|
|
"SBThread(%p)::SetSelectedFrame() => error: process is running",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
2010-12-17 10:26:24 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (log) {
|
|
|
|
SBStream frame_desc_strm;
|
|
|
|
sb_frame.GetDescription(frame_desc_strm);
|
|
|
|
log->Printf("SBThread(%p)::SetSelectedFrame (idx=%u) => SBFrame(%p): %s",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()), idx,
|
|
|
|
static_cast<void *>(frame_sp.get()), frame_desc_strm.GetData());
|
|
|
|
}
|
|
|
|
return sb_frame;
|
2010-12-17 10:26:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool SBThread::EventIsThreadEvent(const SBEvent &event) {
|
|
|
|
return Thread::ThreadEventData::GetEventDataFromEvent(event.get()) != NULL;
|
2012-10-11 02:32:14 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
SBFrame SBThread::GetStackFrameFromEvent(const SBEvent &event) {
|
|
|
|
return Thread::ThreadEventData::GetStackFrameFromEvent(event.get());
|
2012-10-11 02:32:14 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
SBThread SBThread::GetThreadFromEvent(const SBEvent &event) {
|
|
|
|
return Thread::ThreadEventData::GetThreadFromEvent(event.get());
|
2012-10-11 02:32:14 +08:00
|
|
|
}
|
2010-12-17 10:26:24 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool SBThread::operator==(const SBThread &rhs) const {
|
|
|
|
return m_opaque_sp->GetThreadSP().get() ==
|
|
|
|
rhs.m_opaque_sp->GetThreadSP().get();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool SBThread::operator!=(const SBThread &rhs) const {
|
|
|
|
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
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool SBThread::GetStatus(SBStream &status) const {
|
|
|
|
Stream &strm = status.ref();
|
2012-10-11 02:32:14 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-06-11 01:22:26 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
2016-11-09 04:36:40 +08:00
|
|
|
exe_ctx.GetThreadPtr()->GetStatus(strm, 0, 1, 1, true);
|
2016-09-07 04:57:50 +08:00
|
|
|
} else
|
|
|
|
strm.PutCString("No status");
|
|
|
|
|
|
|
|
return true;
|
2012-10-11 02:32:14 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool SBThread::GetDescription(SBStream &description) const {
|
2016-11-09 04:36:40 +08:00
|
|
|
return GetDescription(description, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SBThread::GetDescription(SBStream &description, bool stop_format) const {
|
2016-09-07 04:57:50 +08:00
|
|
|
Stream &strm = description.ref();
|
2011-11-13 14:57:31 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
2016-06-11 01:22:26 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
exe_ctx.GetThreadPtr()->DumpUsingSettingsFormat(strm,
|
2016-11-09 04:36:40 +08:00
|
|
|
LLDB_INVALID_THREAD_ID,
|
|
|
|
stop_format);
|
2016-09-07 04:57:50 +08:00
|
|
|
// strm.Printf("SBThread: tid = 0x%4.4" PRIx64,
|
|
|
|
// exe_ctx.GetThreadPtr()->GetID());
|
|
|
|
} else
|
|
|
|
strm.PutCString("No value");
|
|
|
|
|
|
|
|
return true;
|
2010-10-26 11:11:13 +08:00
|
|
|
}
|
2013-11-06 08:04:44 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
SBThread SBThread::GetExtendedBacktraceThread(const char *type) {
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
|
|
|
|
std::unique_lock<std::recursive_mutex> lock;
|
|
|
|
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);
|
|
|
|
SBThread sb_origin_thread;
|
|
|
|
|
|
|
|
if (exe_ctx.HasThreadScope()) {
|
|
|
|
Process::StopLocker stop_locker;
|
|
|
|
if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) {
|
|
|
|
ThreadSP real_thread(exe_ctx.GetThreadSP());
|
|
|
|
if (real_thread) {
|
|
|
|
ConstString type_const(type);
|
|
|
|
Process *process = exe_ctx.GetProcessPtr();
|
|
|
|
if (process) {
|
|
|
|
SystemRuntime *runtime = process->GetSystemRuntime();
|
|
|
|
if (runtime) {
|
|
|
|
ThreadSP new_thread_sp(
|
|
|
|
runtime->GetExtendedBacktraceThread(real_thread, type_const));
|
|
|
|
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.
|
2016-09-07 04:57:50 +08:00
|
|
|
process->GetExtendedThreadList().AddThread(new_thread_sp);
|
|
|
|
sb_origin_thread.SetThread(new_thread_sp);
|
|
|
|
if (log) {
|
|
|
|
const char *queue_name = new_thread_sp->GetQueueName();
|
|
|
|
if (queue_name == NULL)
|
|
|
|
queue_name = "";
|
|
|
|
log->Printf("SBThread(%p)::GetExtendedBacktraceThread() => new "
|
|
|
|
"extended Thread "
|
|
|
|
"created (%p) with queue_id 0x%" PRIx64
|
|
|
|
" queue name '%s'",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()),
|
|
|
|
static_cast<void *>(new_thread_sp.get()),
|
|
|
|
new_thread_sp->GetQueueID(), queue_name);
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (log)
|
|
|
|
log->Printf("SBThread(%p)::GetExtendedBacktraceThread() => error: "
|
|
|
|
"process is running",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
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
|
|
|
if (log && sb_origin_thread.IsValid() == false)
|
|
|
|
log->Printf("SBThread(%p)::GetExtendedBacktraceThread() is not returning a "
|
|
|
|
"Valid thread",
|
|
|
|
static_cast<void *>(exe_ctx.GetThreadPtr()));
|
|
|
|
return sb_origin_thread;
|
2013-11-06 08:04:44 +08:00
|
|
|
}
|
2013-11-16 09:24:22 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
uint32_t SBThread::GetExtendedBacktraceOriginatingIndexID() {
|
|
|
|
ThreadSP thread_sp(m_opaque_sp->GetThreadSP());
|
|
|
|
if (thread_sp)
|
|
|
|
return thread_sp->GetExtendedBacktraceOriginatingIndexID();
|
|
|
|
return LLDB_INVALID_INDEX32;
|
2013-11-16 09:24:22 +08:00
|
|
|
}
|
2014-05-14 06:02:48 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool SBThread::SafeToCallFunctions() {
|
|
|
|
ThreadSP thread_sp(m_opaque_sp->GetThreadSP());
|
|
|
|
if (thread_sp)
|
|
|
|
return thread_sp->SafeToCallFunctions();
|
|
|
|
return true;
|
2014-05-14 06:02:48 +08:00
|
|
|
}
|
2014-09-30 07:17:18 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
lldb_private::Thread *SBThread::operator->() {
|
|
|
|
ThreadSP thread_sp(m_opaque_sp->GetThreadSP());
|
|
|
|
if (thread_sp)
|
|
|
|
return thread_sp.get();
|
|
|
|
else
|
|
|
|
return NULL;
|
2014-09-30 07:17:18 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
lldb_private::Thread *SBThread::get() {
|
|
|
|
ThreadSP thread_sp(m_opaque_sp->GetThreadSP());
|
|
|
|
if (thread_sp)
|
|
|
|
return thread_sp.get();
|
|
|
|
else
|
|
|
|
return NULL;
|
2014-09-30 07:17:18 +08:00
|
|
|
}
|