2010-06-09 00:52:24 +08:00
|
|
|
//===-- ThreadPlan.cpp ------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// C Includes
|
|
|
|
// C++ Includes
|
|
|
|
// Other libraries and framework includes
|
|
|
|
// Project includes
|
2015-12-15 09:33:19 +08:00
|
|
|
#include "lldb/Target/ThreadPlan.h"
|
2010-11-12 03:26:09 +08:00
|
|
|
#include "lldb/Core/Debugger.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Core/Log.h"
|
|
|
|
#include "lldb/Core/State.h"
|
2010-11-12 03:26:09 +08:00
|
|
|
#include "lldb/Target/Process.h"
|
2016-09-07 04:57:50 +08:00
|
|
|
#include "lldb/Target/RegisterContext.h"
|
2010-11-12 03:26:09 +08:00
|
|
|
#include "lldb/Target/Target.h"
|
2016-09-07 04:57:50 +08:00
|
|
|
#include "lldb/Target/Thread.h"
|
2015-03-19 05:31:45 +08:00
|
|
|
#include "lldb/Utility/ConvertEnum.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// ThreadPlan constructor
|
|
|
|
//----------------------------------------------------------------------
|
2016-09-07 04:57:50 +08:00
|
|
|
ThreadPlan::ThreadPlan(ThreadPlanKind kind, const char *name, Thread &thread,
|
|
|
|
Vote stop_vote, Vote run_vote)
|
|
|
|
: m_thread(thread), m_stop_vote(stop_vote), m_run_vote(run_vote),
|
|
|
|
m_kind(kind), m_name(name), m_plan_complete_mutex(),
|
|
|
|
m_cached_plan_explains_stop(eLazyBoolCalculate), m_plan_complete(false),
|
|
|
|
m_plan_private(false), m_okay_to_discard(true), m_is_master_plan(false),
|
|
|
|
m_plan_succeeded(true) {
|
|
|
|
SetID(GetNextID());
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Destructor
|
|
|
|
//----------------------------------------------------------------------
|
2015-12-15 09:33:19 +08:00
|
|
|
ThreadPlan::~ThreadPlan() = default;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool ThreadPlan::PlanExplainsStop(Event *event_ptr) {
|
|
|
|
if (m_cached_plan_explains_stop == eLazyBoolCalculate) {
|
|
|
|
bool actual_value = DoPlanExplainsStop(event_ptr);
|
|
|
|
m_cached_plan_explains_stop = actual_value ? eLazyBoolYes : eLazyBoolNo;
|
|
|
|
return actual_value;
|
|
|
|
} else {
|
|
|
|
return m_cached_plan_explains_stop == eLazyBoolYes;
|
|
|
|
}
|
Figure out the reply to "PlanExplainsStop" once when we stop and then use the cached
value. This fixes problems, for instance, with the StepRange plans, where they know that
they explained the stop because they were at their "run to here" breakpoint, then deleted
that breakpoint, so when they got asked again, doh! I had done this for a couple of plans
in an ad hoc fashion, this just formalizes it.
Also add a "ResumeRequested" in Process so that the code in the completion handlers can
tell the ShouldStop logic they want to resume rather than just directly resuming. That allows
us to handle resuming in a more controlled fashion.
Also, SetPublicState can take a "restarted" flag, so that it doesn't drop the run lock when
the target was immediately restarted.
--This line, and those below , will be ignored--
M test/lang/objc/objc-dynamic-value/TestObjCDynamicValue.py
M include/lldb/Target/ThreadList.h
M include/lldb/Target/ThreadPlanStepOut.h
M include/lldb/Target/Thread.h
M include/lldb/Target/ThreadPlanBase.h
M include/lldb/Target/ThreadPlanStepThrough.h
M include/lldb/Target/ThreadPlanStepInstruction.h
M include/lldb/Target/ThreadPlanStepInRange.h
M include/lldb/Target/ThreadPlanStepOverBreakpoint.h
M include/lldb/Target/ThreadPlanStepUntil.h
M include/lldb/Target/StopInfo.h
M include/lldb/Target/Process.h
M include/lldb/Target/ThreadPlanRunToAddress.h
M include/lldb/Target/ThreadPlan.h
M include/lldb/Target/ThreadPlanCallFunction.h
M include/lldb/Target/ThreadPlanStepOverRange.h
M source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.h
M source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
M source/Target/StopInfo.cpp
M source/Target/Process.cpp
M source/Target/ThreadPlanRunToAddress.cpp
M source/Target/ThreadPlan.cpp
M source/Target/ThreadPlanCallFunction.cpp
M source/Target/ThreadPlanStepOverRange.cpp
M source/Target/ThreadList.cpp
M source/Target/ThreadPlanStepOut.cpp
M source/Target/Thread.cpp
M source/Target/ThreadPlanBase.cpp
M source/Target/ThreadPlanStepThrough.cpp
M source/Target/ThreadPlanStepInstruction.cpp
M source/Target/ThreadPlanStepInRange.cpp
M source/Target/ThreadPlanStepOverBreakpoint.cpp
M source/Target/ThreadPlanStepUntil.cpp
M lldb.xcodeproj/xcshareddata/xcschemes/Run Testsuite.xcscheme
llvm-svn: 181381
2013-05-08 08:35:16 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool ThreadPlan::IsPlanComplete() {
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(m_plan_complete_mutex);
|
|
|
|
return m_plan_complete;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
void ThreadPlan::SetPlanComplete(bool success) {
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(m_plan_complete_mutex);
|
|
|
|
m_plan_complete = true;
|
|
|
|
m_plan_succeeded = success;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool ThreadPlan::MischiefManaged() {
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(m_plan_complete_mutex);
|
|
|
|
// Mark the plan is complete, but don't override the success flag.
|
|
|
|
m_plan_complete = true;
|
|
|
|
return true;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
Vote ThreadPlan::ShouldReportStop(Event *event_ptr) {
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
|
|
|
|
|
|
|
|
if (m_stop_vote == eVoteNoOpinion) {
|
|
|
|
ThreadPlan *prev_plan = GetPreviousPlan();
|
|
|
|
if (prev_plan) {
|
|
|
|
Vote prev_vote = prev_plan->ShouldReportStop(event_ptr);
|
|
|
|
if (log)
|
|
|
|
log->Printf("ThreadPlan::ShouldReportStop() returning previous thread "
|
|
|
|
"plan vote: %s",
|
|
|
|
GetVoteAsCString(prev_vote));
|
|
|
|
return prev_vote;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
if (log)
|
|
|
|
log->Printf("ThreadPlan::ShouldReportStop() returning vote: %s",
|
|
|
|
GetVoteAsCString(m_stop_vote));
|
|
|
|
return m_stop_vote;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
Vote ThreadPlan::ShouldReportRun(Event *event_ptr) {
|
|
|
|
if (m_run_vote == eVoteNoOpinion) {
|
|
|
|
ThreadPlan *prev_plan = GetPreviousPlan();
|
|
|
|
if (prev_plan)
|
|
|
|
return prev_plan->ShouldReportRun(event_ptr);
|
|
|
|
}
|
|
|
|
return m_run_vote;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool ThreadPlan::StopOthers() {
|
|
|
|
ThreadPlan *prev_plan;
|
|
|
|
prev_plan = GetPreviousPlan();
|
|
|
|
return (prev_plan == nullptr) ? false : prev_plan->StopOthers();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
void ThreadPlan::SetStopOthers(bool new_value) {
|
|
|
|
// SetStopOthers doesn't work up the hierarchy. You have to set the
|
|
|
|
// explicit ThreadPlan you want to affect.
|
2010-11-30 10:22:11 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool ThreadPlan::WillResume(StateType resume_state, bool current_plan) {
|
|
|
|
m_cached_plan_explains_stop = eLazyBoolCalculate;
|
|
|
|
|
|
|
|
if (current_plan) {
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
|
|
|
|
|
|
|
|
if (log) {
|
|
|
|
RegisterContext *reg_ctx = m_thread.GetRegisterContext().get();
|
|
|
|
assert(reg_ctx);
|
|
|
|
addr_t pc = reg_ctx->GetPC();
|
|
|
|
addr_t sp = reg_ctx->GetSP();
|
|
|
|
addr_t fp = reg_ctx->GetFP();
|
|
|
|
log->Printf(
|
|
|
|
"%s Thread #%u (0x%p): tid = 0x%4.4" PRIx64 ", pc = 0x%8.8" PRIx64
|
|
|
|
", sp = 0x%8.8" PRIx64 ", fp = 0x%8.8" PRIx64 ", "
|
|
|
|
"plan = '%s', state = %s, stop others = %d",
|
|
|
|
__FUNCTION__, m_thread.GetIndexID(), static_cast<void *>(&m_thread),
|
|
|
|
m_thread.GetID(), static_cast<uint64_t>(pc),
|
|
|
|
static_cast<uint64_t>(sp), static_cast<uint64_t>(fp), m_name.c_str(),
|
|
|
|
StateAsCString(resume_state), StopOthers());
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
return DoWillResume(resume_state, current_plan);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
lldb::user_id_t ThreadPlan::GetNextID() {
|
|
|
|
static uint32_t g_nextPlanID = 0;
|
|
|
|
return ++g_nextPlanID;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
void ThreadPlan::DidPush() {}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
void ThreadPlan::WillPop() {}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool ThreadPlan::OkayToDiscard() {
|
|
|
|
return IsMasterPlan() ? m_okay_to_discard : true;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
lldb::StateType ThreadPlan::RunState() {
|
|
|
|
if (m_tracer_sp && m_tracer_sp->TracingEnabled() &&
|
|
|
|
m_tracer_sp->SingleStepEnabled())
|
|
|
|
return eStateStepping;
|
|
|
|
else
|
|
|
|
return GetPlanRunState();
|
2010-11-12 03:26:09 +08:00
|
|
|
}
|
2013-07-30 08:23:06 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool ThreadPlan::IsUsuallyUnexplainedStopReason(lldb::StopReason reason) {
|
|
|
|
switch (reason) {
|
|
|
|
case eStopReasonWatchpoint:
|
|
|
|
case eStopReasonSignal:
|
|
|
|
case eStopReasonException:
|
|
|
|
case eStopReasonExec:
|
|
|
|
case eStopReasonThreadExiting:
|
|
|
|
case eStopReasonInstrumentation:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
2015-07-24 03:55:02 +08:00
|
|
|
}
|
|
|
|
|
2013-07-30 08:23:06 +08:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// ThreadPlanNull
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
ThreadPlanNull::ThreadPlanNull(Thread &thread)
|
|
|
|
: ThreadPlan(ThreadPlan::eKindNull, "Null Thread Plan", thread,
|
|
|
|
eVoteNoOpinion, eVoteNoOpinion) {}
|
2013-07-30 08:23:06 +08:00
|
|
|
|
2015-12-15 09:33:19 +08:00
|
|
|
ThreadPlanNull::~ThreadPlanNull() = default;
|
2013-07-30 08:23:06 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
void ThreadPlanNull::GetDescription(Stream *s, lldb::DescriptionLevel level) {
|
|
|
|
s->PutCString("Null thread plan - thread has been destroyed.");
|
2013-07-30 08:23:06 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool ThreadPlanNull::ValidatePlan(Stream *error) {
|
2013-07-30 08:23:06 +08:00
|
|
|
#ifdef LLDB_CONFIGURATION_DEBUG
|
2016-09-07 04:57:50 +08:00
|
|
|
fprintf(stderr,
|
|
|
|
"error: %s called on thread that has been destroyed (tid = 0x%" PRIx64
|
|
|
|
", ptid = 0x%" PRIx64 ")",
|
|
|
|
LLVM_PRETTY_FUNCTION, m_thread.GetID(), m_thread.GetProtocolID());
|
2013-07-30 08:23:06 +08:00
|
|
|
#else
|
2016-09-07 04:57:50 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
|
|
|
|
if (log)
|
|
|
|
log->Error("%s called on thread that has been destroyed (tid = 0x%" PRIx64
|
|
|
|
", ptid = 0x%" PRIx64 ")",
|
|
|
|
LLVM_PRETTY_FUNCTION, m_thread.GetID(),
|
|
|
|
m_thread.GetProtocolID());
|
2013-07-30 08:23:06 +08:00
|
|
|
#endif
|
2016-09-07 04:57:50 +08:00
|
|
|
return true;
|
2013-07-30 08:23:06 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool ThreadPlanNull::ShouldStop(Event *event_ptr) {
|
2013-07-30 08:23:06 +08:00
|
|
|
#ifdef LLDB_CONFIGURATION_DEBUG
|
2016-09-07 04:57:50 +08:00
|
|
|
fprintf(stderr,
|
|
|
|
"error: %s called on thread that has been destroyed (tid = 0x%" PRIx64
|
|
|
|
", ptid = 0x%" PRIx64 ")",
|
|
|
|
LLVM_PRETTY_FUNCTION, m_thread.GetID(), m_thread.GetProtocolID());
|
2013-07-30 08:23:06 +08:00
|
|
|
#else
|
2016-09-07 04:57:50 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
|
|
|
|
if (log)
|
|
|
|
log->Error("%s called on thread that has been destroyed (tid = 0x%" PRIx64
|
|
|
|
", ptid = 0x%" PRIx64 ")",
|
|
|
|
LLVM_PRETTY_FUNCTION, m_thread.GetID(),
|
|
|
|
m_thread.GetProtocolID());
|
2013-07-30 08:23:06 +08:00
|
|
|
#endif
|
2016-09-07 04:57:50 +08:00
|
|
|
return true;
|
2013-07-30 08:23:06 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool ThreadPlanNull::WillStop() {
|
2013-07-30 08:23:06 +08:00
|
|
|
#ifdef LLDB_CONFIGURATION_DEBUG
|
2016-09-07 04:57:50 +08:00
|
|
|
fprintf(stderr,
|
|
|
|
"error: %s called on thread that has been destroyed (tid = 0x%" PRIx64
|
|
|
|
", ptid = 0x%" PRIx64 ")",
|
|
|
|
LLVM_PRETTY_FUNCTION, m_thread.GetID(), m_thread.GetProtocolID());
|
2013-07-30 08:23:06 +08:00
|
|
|
#else
|
2016-09-07 04:57:50 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
|
|
|
|
if (log)
|
|
|
|
log->Error("%s called on thread that has been destroyed (tid = 0x%" PRIx64
|
|
|
|
", ptid = 0x%" PRIx64 ")",
|
|
|
|
LLVM_PRETTY_FUNCTION, m_thread.GetID(),
|
|
|
|
m_thread.GetProtocolID());
|
2013-07-30 08:23:06 +08:00
|
|
|
#endif
|
2016-09-07 04:57:50 +08:00
|
|
|
return true;
|
2013-07-30 08:23:06 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool ThreadPlanNull::DoPlanExplainsStop(Event *event_ptr) {
|
2013-07-30 08:23:06 +08:00
|
|
|
#ifdef LLDB_CONFIGURATION_DEBUG
|
2016-09-07 04:57:50 +08:00
|
|
|
fprintf(stderr,
|
|
|
|
"error: %s called on thread that has been destroyed (tid = 0x%" PRIx64
|
|
|
|
", ptid = 0x%" PRIx64 ")",
|
|
|
|
LLVM_PRETTY_FUNCTION, m_thread.GetID(), m_thread.GetProtocolID());
|
2013-07-30 08:23:06 +08:00
|
|
|
#else
|
2016-09-07 04:57:50 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
|
|
|
|
if (log)
|
|
|
|
log->Error("%s called on thread that has been destroyed (tid = 0x%" PRIx64
|
|
|
|
", ptid = 0x%" PRIx64 ")",
|
|
|
|
LLVM_PRETTY_FUNCTION, m_thread.GetID(),
|
|
|
|
m_thread.GetProtocolID());
|
2013-07-30 08:23:06 +08:00
|
|
|
#endif
|
2016-09-07 04:57:50 +08:00
|
|
|
return true;
|
2013-07-30 08:23:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// The null plan is never done.
|
2016-09-07 04:57:50 +08:00
|
|
|
bool ThreadPlanNull::MischiefManaged() {
|
|
|
|
// The null plan is never done.
|
2013-07-30 08:23:06 +08:00
|
|
|
#ifdef LLDB_CONFIGURATION_DEBUG
|
2016-09-07 04:57:50 +08:00
|
|
|
fprintf(stderr,
|
|
|
|
"error: %s called on thread that has been destroyed (tid = 0x%" PRIx64
|
|
|
|
", ptid = 0x%" PRIx64 ")",
|
|
|
|
LLVM_PRETTY_FUNCTION, m_thread.GetID(), m_thread.GetProtocolID());
|
2013-07-30 08:23:06 +08:00
|
|
|
#else
|
2016-09-07 04:57:50 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
|
|
|
|
if (log)
|
|
|
|
log->Error("%s called on thread that has been destroyed (tid = 0x%" PRIx64
|
|
|
|
", ptid = 0x%" PRIx64 ")",
|
|
|
|
LLVM_PRETTY_FUNCTION, m_thread.GetID(),
|
|
|
|
m_thread.GetProtocolID());
|
2013-07-30 08:23:06 +08:00
|
|
|
#endif
|
2016-09-07 04:57:50 +08:00
|
|
|
return false;
|
2013-07-30 08:23:06 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
lldb::StateType ThreadPlanNull::GetPlanRunState() {
|
|
|
|
// Not sure what to return here. This is a dead thread.
|
2013-07-30 08:23:06 +08:00
|
|
|
#ifdef LLDB_CONFIGURATION_DEBUG
|
2016-09-07 04:57:50 +08:00
|
|
|
fprintf(stderr,
|
|
|
|
"error: %s called on thread that has been destroyed (tid = 0x%" PRIx64
|
|
|
|
", ptid = 0x%" PRIx64 ")",
|
|
|
|
LLVM_PRETTY_FUNCTION, m_thread.GetID(), m_thread.GetProtocolID());
|
2013-07-30 08:23:06 +08:00
|
|
|
#else
|
2016-09-07 04:57:50 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
|
|
|
|
if (log)
|
|
|
|
log->Error("%s called on thread that has been destroyed (tid = 0x%" PRIx64
|
|
|
|
", ptid = 0x%" PRIx64 ")",
|
|
|
|
LLVM_PRETTY_FUNCTION, m_thread.GetID(),
|
|
|
|
m_thread.GetProtocolID());
|
2013-07-30 08:23:06 +08:00
|
|
|
#endif
|
2016-09-07 04:57:50 +08:00
|
|
|
return eStateRunning;
|
2013-07-30 08:23:06 +08:00
|
|
|
}
|