2010-06-09 00:52:24 +08:00
|
|
|
//===-- Thread.cpp ----------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "lldb/lldb-private-log.h"
|
2010-06-16 10:00:15 +08:00
|
|
|
#include "lldb/Breakpoint/BreakpointLocation.h"
|
2010-10-04 09:05:56 +08:00
|
|
|
#include "lldb/Core/Debugger.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Core/Log.h"
|
|
|
|
#include "lldb/Core/Stream.h"
|
|
|
|
#include "lldb/Core/StreamString.h"
|
2010-09-08 11:14:33 +08:00
|
|
|
#include "lldb/Core/RegularExpression.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Host/Host.h"
|
|
|
|
#include "lldb/Target/DynamicLoader.h"
|
|
|
|
#include "lldb/Target/ExecutionContext.h"
|
2010-09-28 09:25:32 +08:00
|
|
|
#include "lldb/Target/ObjCLanguageRuntime.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Target/Process.h"
|
|
|
|
#include "lldb/Target/RegisterContext.h"
|
2010-08-04 09:40:35 +08:00
|
|
|
#include "lldb/Target/StopInfo.h"
|
2010-07-24 00:45:51 +08:00
|
|
|
#include "lldb/Target/Target.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Target/Thread.h"
|
|
|
|
#include "lldb/Target/ThreadPlan.h"
|
|
|
|
#include "lldb/Target/ThreadPlanCallFunction.h"
|
|
|
|
#include "lldb/Target/ThreadPlanBase.h"
|
|
|
|
#include "lldb/Target/ThreadPlanStepInstruction.h"
|
|
|
|
#include "lldb/Target/ThreadPlanStepOut.h"
|
|
|
|
#include "lldb/Target/ThreadPlanStepOverBreakpoint.h"
|
|
|
|
#include "lldb/Target/ThreadPlanStepThrough.h"
|
|
|
|
#include "lldb/Target/ThreadPlanStepInRange.h"
|
|
|
|
#include "lldb/Target/ThreadPlanStepOverRange.h"
|
|
|
|
#include "lldb/Target/ThreadPlanRunToAddress.h"
|
|
|
|
#include "lldb/Target/ThreadPlanStepUntil.h"
|
2010-06-16 10:00:15 +08:00
|
|
|
#include "lldb/Target/ThreadSpec.h"
|
2010-08-12 10:14:28 +08:00
|
|
|
#include "lldb/Target/Unwind.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
Thread::Thread (Process &process, lldb::tid_t tid) :
|
|
|
|
UserID (tid),
|
2010-09-08 11:14:33 +08:00
|
|
|
ThreadInstanceSettings (*(Thread::GetSettingsController().get())),
|
2010-07-16 20:32:33 +08:00
|
|
|
m_process (process),
|
2010-08-04 09:40:35 +08:00
|
|
|
m_actual_stop_info_sp (),
|
2010-06-09 00:52:24 +08:00
|
|
|
m_index_id (process.GetNextThreadIndexID ()),
|
|
|
|
m_reg_context_sp (),
|
|
|
|
m_state (eStateUnloaded),
|
2010-08-25 08:35:26 +08:00
|
|
|
m_state_mutex (Mutex::eMutexTypeRecursive),
|
2010-06-09 00:52:24 +08:00
|
|
|
m_plan_stack (),
|
|
|
|
m_completed_plan_stack(),
|
2010-08-26 10:28:22 +08:00
|
|
|
m_curr_frames_ap (),
|
2010-06-09 00:52:24 +08:00
|
|
|
m_resume_signal (LLDB_INVALID_SIGNAL_NUMBER),
|
2010-08-12 10:14:28 +08:00
|
|
|
m_resume_state (eStateRunning),
|
|
|
|
m_unwinder_ap ()
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_OBJECT));
|
2010-06-09 00:52:24 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf ("%p Thread::Thread(tid = 0x%4.4x)", this, GetID());
|
|
|
|
|
|
|
|
QueueFundamentalPlan(true);
|
2010-09-27 08:30:10 +08:00
|
|
|
UpdateInstanceName();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Thread::~Thread()
|
|
|
|
{
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_OBJECT));
|
2010-06-09 00:52:24 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf ("%p Thread::~Thread(tid = 0x%4.4x)", this, GetID());
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
Thread::GetResumeSignal () const
|
|
|
|
{
|
|
|
|
return m_resume_signal;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Thread::SetResumeSignal (int signal)
|
|
|
|
{
|
|
|
|
m_resume_signal = signal;
|
|
|
|
}
|
|
|
|
|
|
|
|
StateType
|
|
|
|
Thread::GetResumeState () const
|
|
|
|
{
|
|
|
|
return m_resume_state;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Thread::SetResumeState (StateType state)
|
|
|
|
{
|
|
|
|
m_resume_state = state;
|
|
|
|
}
|
|
|
|
|
2010-10-20 08:39:53 +08:00
|
|
|
lldb::StopInfoSP
|
2010-08-04 09:40:35 +08:00
|
|
|
Thread::GetStopInfo ()
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-10-20 08:39:53 +08:00
|
|
|
ThreadPlanSP plan_sp (GetCompletedPlan());
|
|
|
|
if (plan_sp)
|
|
|
|
return StopInfo::CreateStopReasonWithPlan (plan_sp);
|
|
|
|
else
|
|
|
|
return GetPrivateStopReason ();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Thread::ThreadStoppedForAReason (void)
|
|
|
|
{
|
2010-08-04 09:40:35 +08:00
|
|
|
return GetPrivateStopReason () != NULL;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
StateType
|
|
|
|
Thread::GetState() const
|
|
|
|
{
|
|
|
|
// If any other threads access this we will need a mutex for it
|
|
|
|
Mutex::Locker locker(m_state_mutex);
|
|
|
|
return m_state;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Thread::SetState(StateType state)
|
|
|
|
{
|
|
|
|
Mutex::Locker locker(m_state_mutex);
|
|
|
|
m_state = state;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Thread::WillStop()
|
|
|
|
{
|
|
|
|
ThreadPlan *current_plan = GetCurrentPlan();
|
|
|
|
|
|
|
|
// FIXME: I may decide to disallow threads with no plans. In which
|
|
|
|
// case this should go to an assert.
|
|
|
|
|
|
|
|
if (!current_plan)
|
|
|
|
return;
|
|
|
|
|
|
|
|
current_plan->WillStop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Thread::SetupForResume ()
|
|
|
|
{
|
|
|
|
if (GetResumeState() != eStateSuspended)
|
|
|
|
{
|
|
|
|
|
|
|
|
// If we're at a breakpoint push the step-over breakpoint plan. Do this before
|
|
|
|
// telling the current plan it will resume, since we might change what the current
|
|
|
|
// plan is.
|
|
|
|
|
|
|
|
lldb::addr_t pc = GetRegisterContext()->GetPC();
|
|
|
|
BreakpointSiteSP bp_site_sp = GetProcess().GetBreakpointSiteList().FindByAddress(pc);
|
|
|
|
if (bp_site_sp && bp_site_sp->IsEnabled())
|
|
|
|
{
|
|
|
|
// Note, don't assume there's a ThreadPlanStepOverBreakpoint, the target may not require anything
|
|
|
|
// special to step over a breakpoint.
|
2010-06-19 12:45:32 +08:00
|
|
|
|
|
|
|
ThreadPlan *cur_plan = GetCurrentPlan();
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2010-06-19 12:45:32 +08:00
|
|
|
if (cur_plan->GetKind() != ThreadPlan::eKindStepOverBreakpoint)
|
|
|
|
{
|
|
|
|
ThreadPlanStepOverBreakpoint *step_bp_plan = new ThreadPlanStepOverBreakpoint (*this);
|
|
|
|
if (step_bp_plan)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-06-19 12:45:32 +08:00
|
|
|
ThreadPlanSP step_bp_plan_sp;
|
|
|
|
step_bp_plan->SetPrivate (true);
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
if (GetCurrentPlan()->RunState() != eStateStepping)
|
|
|
|
{
|
2010-06-19 12:45:32 +08:00
|
|
|
step_bp_plan->SetAutoContinue(true);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2010-06-19 12:45:32 +08:00
|
|
|
step_bp_plan_sp.reset (step_bp_plan);
|
2010-06-09 00:52:24 +08:00
|
|
|
QueueThreadPlan (step_bp_plan_sp, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Thread::WillResume (StateType resume_state)
|
|
|
|
{
|
|
|
|
// At this point clear the completed plan stack.
|
|
|
|
m_completed_plan_stack.clear();
|
|
|
|
m_discarded_plan_stack.clear();
|
|
|
|
|
2010-08-04 09:40:35 +08:00
|
|
|
StopInfo *stop_info = GetPrivateStopReason().get();
|
|
|
|
if (stop_info)
|
|
|
|
stop_info->WillResume (resume_state);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
// Tell all the plans that we are about to resume in case they need to clear any state.
|
|
|
|
// We distinguish between the plan on the top of the stack and the lower
|
|
|
|
// plans in case a plan needs to do any special business before it runs.
|
|
|
|
|
|
|
|
ThreadPlan *plan_ptr = GetCurrentPlan();
|
|
|
|
plan_ptr->WillResume(resume_state, true);
|
|
|
|
|
|
|
|
while ((plan_ptr = GetPreviousPlan(plan_ptr)) != NULL)
|
|
|
|
{
|
|
|
|
plan_ptr->WillResume (resume_state, false);
|
|
|
|
}
|
2010-08-04 09:40:35 +08:00
|
|
|
|
|
|
|
m_actual_stop_info_sp.reset();
|
2010-06-09 00:52:24 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Thread::DidResume ()
|
|
|
|
{
|
|
|
|
SetResumeSignal (LLDB_INVALID_SIGNAL_NUMBER);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Thread::ShouldStop (Event* event_ptr)
|
|
|
|
{
|
|
|
|
ThreadPlan *current_plan = GetCurrentPlan();
|
|
|
|
bool should_stop = true;
|
|
|
|
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
|
2010-06-09 00:52:24 +08:00
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
StreamString s;
|
|
|
|
DumpThreadPlans(&s);
|
|
|
|
log->PutCString (s.GetData());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (current_plan->PlanExplainsStop())
|
|
|
|
{
|
2010-06-19 12:45:32 +08:00
|
|
|
bool over_ride_stop = current_plan->ShouldAutoContinue(event_ptr);
|
2010-06-09 00:52:24 +08:00
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
should_stop = current_plan->ShouldStop(event_ptr);
|
|
|
|
if (current_plan->MischiefManaged())
|
|
|
|
{
|
|
|
|
if (should_stop)
|
|
|
|
current_plan->WillStop();
|
|
|
|
|
|
|
|
// If a Master Plan wants to stop, and wants to stick on the stack, we let it.
|
|
|
|
// Otherwise, see if the plan's parent wants to stop.
|
|
|
|
|
|
|
|
if (should_stop && current_plan->IsMasterPlan() && !current_plan->OkayToDiscard())
|
|
|
|
{
|
|
|
|
PopPlan();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
|
|
|
|
PopPlan();
|
|
|
|
|
|
|
|
current_plan = GetCurrentPlan();
|
|
|
|
if (current_plan == NULL)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-06-19 12:45:32 +08:00
|
|
|
if (over_ride_stop)
|
|
|
|
should_stop = false;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// If the current plan doesn't explain the stop, then, find one that
|
|
|
|
// does and let it handle the situation.
|
|
|
|
ThreadPlan *plan_ptr = current_plan;
|
|
|
|
while ((plan_ptr = GetPreviousPlan(plan_ptr)) != NULL)
|
|
|
|
{
|
|
|
|
if (plan_ptr->PlanExplainsStop())
|
|
|
|
{
|
|
|
|
should_stop = plan_ptr->ShouldStop (event_ptr);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return should_stop;
|
|
|
|
}
|
|
|
|
|
|
|
|
Vote
|
|
|
|
Thread::ShouldReportStop (Event* event_ptr)
|
|
|
|
{
|
|
|
|
StateType thread_state = GetResumeState ();
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
|
2010-09-04 01:10:42 +08:00
|
|
|
|
|
|
|
if (thread_state == eStateSuspended || thread_state == eStateInvalid)
|
|
|
|
{
|
|
|
|
if (log)
|
|
|
|
log->Printf ("Thread::ShouldReportStop() tid = 0x%4.4x: returning vote %i (state was suspended or invalid)\n", GetID(), eVoteNoOpinion);
|
2010-06-09 00:52:24 +08:00
|
|
|
return eVoteNoOpinion;
|
2010-09-04 01:10:42 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
if (m_completed_plan_stack.size() > 0)
|
|
|
|
{
|
|
|
|
// Don't use GetCompletedPlan here, since that suppresses private plans.
|
2010-09-04 01:10:42 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf ("Thread::ShouldReportStop() tid = 0x%4.4x: returning vote for complete stack's back plan\n", GetID());
|
2010-06-09 00:52:24 +08:00
|
|
|
return m_completed_plan_stack.back()->ShouldReportStop (event_ptr);
|
|
|
|
}
|
|
|
|
else
|
2010-09-04 01:10:42 +08:00
|
|
|
{
|
|
|
|
if (log)
|
|
|
|
log->Printf ("Thread::ShouldReportStop() tid = 0x%4.4x: returning vote for current plan\n", GetID());
|
2010-06-09 00:52:24 +08:00
|
|
|
return GetCurrentPlan()->ShouldReportStop (event_ptr);
|
2010-09-04 01:10:42 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Vote
|
|
|
|
Thread::ShouldReportRun (Event* event_ptr)
|
|
|
|
{
|
|
|
|
StateType thread_state = GetResumeState ();
|
|
|
|
if (thread_state == eStateSuspended
|
|
|
|
|| thread_state == eStateInvalid)
|
|
|
|
return eVoteNoOpinion;
|
|
|
|
|
|
|
|
if (m_completed_plan_stack.size() > 0)
|
|
|
|
{
|
|
|
|
// Don't use GetCompletedPlan here, since that suppresses private plans.
|
|
|
|
return m_completed_plan_stack.back()->ShouldReportRun (event_ptr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return GetCurrentPlan()->ShouldReportRun (event_ptr);
|
|
|
|
}
|
|
|
|
|
2010-06-16 10:00:15 +08:00
|
|
|
bool
|
|
|
|
Thread::MatchesSpec (const ThreadSpec *spec)
|
|
|
|
{
|
|
|
|
if (spec == NULL)
|
|
|
|
return true;
|
|
|
|
|
2010-06-18 09:00:58 +08:00
|
|
|
return spec->ThreadPassesBasicTests(this);
|
2010-06-16 10:00:15 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
void
|
|
|
|
Thread::PushPlan (ThreadPlanSP &thread_plan_sp)
|
|
|
|
{
|
|
|
|
if (thread_plan_sp)
|
|
|
|
{
|
2010-10-20 08:39:53 +08:00
|
|
|
m_plan_stack.push_back (thread_plan_sp);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
thread_plan_sp->DidPush();
|
|
|
|
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
|
2010-06-09 00:52:24 +08:00
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
StreamString s;
|
|
|
|
thread_plan_sp->GetDescription (&s, lldb::eDescriptionLevelFull);
|
2010-10-20 08:39:53 +08:00
|
|
|
log->Printf("Pushing plan: \"%s\", tid = 0x%4.4x.",
|
2010-06-09 00:52:24 +08:00
|
|
|
s.GetData(),
|
2010-10-20 08:39:53 +08:00
|
|
|
thread_plan_sp->GetThread().GetID());
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Thread::PopPlan ()
|
|
|
|
{
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2010-10-20 08:39:53 +08:00
|
|
|
if (m_plan_stack.empty())
|
2010-06-09 00:52:24 +08:00
|
|
|
return;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ThreadPlanSP &plan = m_plan_stack.back();
|
|
|
|
if (log)
|
|
|
|
{
|
2010-11-11 02:17:03 +08:00
|
|
|
log->Printf("Popping plan: \"%s\", tid = 0x%4.4x.", plan->GetName(), plan->GetThread().GetID());
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
m_completed_plan_stack.push_back (plan);
|
|
|
|
plan->WillPop();
|
|
|
|
m_plan_stack.pop_back();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Thread::DiscardPlan ()
|
|
|
|
{
|
|
|
|
if (m_plan_stack.size() > 1)
|
|
|
|
{
|
|
|
|
ThreadPlanSP &plan = m_plan_stack.back();
|
|
|
|
m_discarded_plan_stack.push_back (plan);
|
|
|
|
plan->WillPop();
|
|
|
|
m_plan_stack.pop_back();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ThreadPlan *
|
|
|
|
Thread::GetCurrentPlan ()
|
|
|
|
{
|
2010-10-20 08:39:53 +08:00
|
|
|
if (m_plan_stack.empty())
|
2010-06-09 00:52:24 +08:00
|
|
|
return NULL;
|
|
|
|
else
|
|
|
|
return m_plan_stack.back().get();
|
|
|
|
}
|
|
|
|
|
|
|
|
ThreadPlanSP
|
|
|
|
Thread::GetCompletedPlan ()
|
|
|
|
{
|
|
|
|
ThreadPlanSP empty_plan_sp;
|
|
|
|
if (!m_completed_plan_stack.empty())
|
|
|
|
{
|
|
|
|
for (int i = m_completed_plan_stack.size() - 1; i >= 0; i--)
|
|
|
|
{
|
|
|
|
ThreadPlanSP completed_plan_sp;
|
|
|
|
completed_plan_sp = m_completed_plan_stack[i];
|
|
|
|
if (!completed_plan_sp->GetPrivate ())
|
|
|
|
return completed_plan_sp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return empty_plan_sp;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Thread::IsThreadPlanDone (ThreadPlan *plan)
|
|
|
|
{
|
|
|
|
ThreadPlanSP empty_plan_sp;
|
|
|
|
if (!m_completed_plan_stack.empty())
|
|
|
|
{
|
|
|
|
for (int i = m_completed_plan_stack.size() - 1; i >= 0; i--)
|
|
|
|
{
|
|
|
|
if (m_completed_plan_stack[i].get() == plan)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Thread::WasThreadPlanDiscarded (ThreadPlan *plan)
|
|
|
|
{
|
|
|
|
ThreadPlanSP empty_plan_sp;
|
|
|
|
if (!m_discarded_plan_stack.empty())
|
|
|
|
{
|
|
|
|
for (int i = m_discarded_plan_stack.size() - 1; i >= 0; i--)
|
|
|
|
{
|
|
|
|
if (m_discarded_plan_stack[i].get() == plan)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
ThreadPlan *
|
|
|
|
Thread::GetPreviousPlan (ThreadPlan *current_plan)
|
|
|
|
{
|
|
|
|
if (current_plan == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
int stack_size = m_completed_plan_stack.size();
|
|
|
|
for (int i = stack_size - 1; i > 0; i--)
|
|
|
|
{
|
|
|
|
if (current_plan == m_completed_plan_stack[i].get())
|
|
|
|
return m_completed_plan_stack[i-1].get();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stack_size > 0 && m_completed_plan_stack[0].get() == current_plan)
|
|
|
|
{
|
|
|
|
if (m_plan_stack.size() > 0)
|
|
|
|
return m_plan_stack.back().get();
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
stack_size = m_plan_stack.size();
|
|
|
|
for (int i = stack_size - 1; i > 0; i--)
|
|
|
|
{
|
|
|
|
if (current_plan == m_plan_stack[i].get())
|
|
|
|
return m_plan_stack[i-1].get();
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Thread::QueueThreadPlan (ThreadPlanSP &thread_plan_sp, bool abort_other_plans)
|
|
|
|
{
|
|
|
|
if (abort_other_plans)
|
|
|
|
DiscardThreadPlans(true);
|
|
|
|
|
|
|
|
PushPlan (thread_plan_sp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-11-06 03:25:48 +08:00
|
|
|
Thread::DiscardThreadPlansUpToPlan (lldb::ThreadPlanSP &up_to_plan_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
|
2010-11-06 03:25:48 +08:00
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
log->Printf("Discarding thread plans for thread tid = 0x%4.4x, up to %p", GetID(), up_to_plan_sp.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
int stack_size = m_plan_stack.size();
|
|
|
|
|
|
|
|
// If the input plan is NULL, discard all plans. Otherwise make sure this plan is in the
|
|
|
|
// stack, and if so discard up to and including it.
|
|
|
|
|
|
|
|
if (up_to_plan_sp.get() == NULL)
|
|
|
|
{
|
|
|
|
for (int i = stack_size - 1; i > 0; i--)
|
|
|
|
DiscardPlan();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bool found_it = false;
|
|
|
|
for (int i = stack_size - 1; i > 0; i--)
|
|
|
|
{
|
|
|
|
if (m_plan_stack[i] == up_to_plan_sp)
|
|
|
|
found_it = true;
|
|
|
|
}
|
|
|
|
if (found_it)
|
|
|
|
{
|
|
|
|
bool last_one = false;
|
|
|
|
for (int i = stack_size - 1; i > 0 && !last_one ; i--)
|
|
|
|
{
|
|
|
|
if (GetCurrentPlan() == up_to_plan_sp.get())
|
|
|
|
last_one = true;
|
|
|
|
DiscardPlan();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2010-11-06 03:25:48 +08:00
|
|
|
void
|
|
|
|
Thread::DiscardThreadPlans(bool force)
|
|
|
|
{
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
|
2010-06-09 00:52:24 +08:00
|
|
|
if (log)
|
|
|
|
{
|
2010-09-04 06:45:01 +08:00
|
|
|
log->Printf("Discarding thread plans for thread (tid = 0x%4.4x, force %d)", GetID(), force);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (force)
|
|
|
|
{
|
|
|
|
int stack_size = m_plan_stack.size();
|
|
|
|
for (int i = stack_size - 1; i > 0; i--)
|
|
|
|
{
|
|
|
|
DiscardPlan();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
|
|
|
|
int master_plan_idx;
|
|
|
|
bool discard;
|
|
|
|
|
|
|
|
// Find the first master plan, see if it wants discarding, and if yes discard up to it.
|
|
|
|
for (master_plan_idx = m_plan_stack.size() - 1; master_plan_idx >= 0; master_plan_idx--)
|
|
|
|
{
|
|
|
|
if (m_plan_stack[master_plan_idx]->IsMasterPlan())
|
|
|
|
{
|
|
|
|
discard = m_plan_stack[master_plan_idx]->OkayToDiscard();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (discard)
|
|
|
|
{
|
|
|
|
// First pop all the dependent plans:
|
|
|
|
for (int i = m_plan_stack.size() - 1; i > master_plan_idx; i--)
|
|
|
|
{
|
|
|
|
|
|
|
|
// FIXME: Do we need a finalize here, or is the rule that "PrepareForStop"
|
|
|
|
// for the plan leaves it in a state that it is safe to pop the plan
|
|
|
|
// with no more notice?
|
|
|
|
DiscardPlan();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now discard the master plan itself.
|
|
|
|
// The bottom-most plan never gets discarded. "OkayToDiscard" for it means
|
|
|
|
// discard it's dependent plans, but not it...
|
|
|
|
if (master_plan_idx > 0)
|
|
|
|
{
|
|
|
|
DiscardPlan();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// If the master plan doesn't want to get discarded, then we're done.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
// FIXME: What should we do about the immediate plans?
|
|
|
|
}
|
|
|
|
|
|
|
|
ThreadPlan *
|
|
|
|
Thread::QueueFundamentalPlan (bool abort_other_plans)
|
|
|
|
{
|
|
|
|
ThreadPlanSP thread_plan_sp (new ThreadPlanBase(*this));
|
|
|
|
QueueThreadPlan (thread_plan_sp, abort_other_plans);
|
|
|
|
return thread_plan_sp.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
ThreadPlan *
|
|
|
|
Thread::QueueThreadPlanForStepSingleInstruction (bool step_over, bool abort_other_plans, bool stop_other_threads)
|
|
|
|
{
|
|
|
|
ThreadPlanSP thread_plan_sp (new ThreadPlanStepInstruction (*this, step_over, stop_other_threads, eVoteNoOpinion, eVoteNoOpinion));
|
|
|
|
QueueThreadPlan (thread_plan_sp, abort_other_plans);
|
|
|
|
return thread_plan_sp.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
ThreadPlan *
|
2010-06-13 02:59:55 +08:00
|
|
|
Thread::QueueThreadPlanForStepRange
|
|
|
|
(
|
|
|
|
bool abort_other_plans,
|
|
|
|
StepType type,
|
|
|
|
const AddressRange &range,
|
|
|
|
const SymbolContext &addr_context,
|
|
|
|
lldb::RunMode stop_other_threads,
|
|
|
|
bool avoid_code_without_debug_info
|
|
|
|
)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
ThreadPlanSP thread_plan_sp;
|
|
|
|
if (type == eStepTypeInto)
|
2010-06-13 02:59:55 +08:00
|
|
|
{
|
|
|
|
ThreadPlanStepInRange *plan = new ThreadPlanStepInRange (*this, range, addr_context, stop_other_threads);
|
|
|
|
if (avoid_code_without_debug_info)
|
|
|
|
plan->GetFlags().Set (ThreadPlanShouldStopHere::eAvoidNoDebug);
|
|
|
|
else
|
|
|
|
plan->GetFlags().Clear (ThreadPlanShouldStopHere::eAvoidNoDebug);
|
|
|
|
thread_plan_sp.reset (plan);
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
else
|
|
|
|
thread_plan_sp.reset (new ThreadPlanStepOverRange (*this, range, addr_context, stop_other_threads));
|
|
|
|
|
|
|
|
QueueThreadPlan (thread_plan_sp, abort_other_plans);
|
|
|
|
return thread_plan_sp.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ThreadPlan *
|
|
|
|
Thread::QueueThreadPlanForStepOverBreakpointPlan (bool abort_other_plans)
|
|
|
|
{
|
|
|
|
ThreadPlanSP thread_plan_sp (new ThreadPlanStepOverBreakpoint (*this));
|
|
|
|
QueueThreadPlan (thread_plan_sp, abort_other_plans);
|
|
|
|
return thread_plan_sp.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
ThreadPlan *
|
|
|
|
Thread::QueueThreadPlanForStepOut (bool abort_other_plans, SymbolContext *addr_context, bool first_insn,
|
|
|
|
bool stop_other_threads, Vote stop_vote, Vote run_vote)
|
|
|
|
{
|
|
|
|
ThreadPlanSP thread_plan_sp (new ThreadPlanStepOut (*this, addr_context, first_insn, stop_other_threads, stop_vote, run_vote));
|
|
|
|
QueueThreadPlan (thread_plan_sp, abort_other_plans);
|
|
|
|
return thread_plan_sp.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
ThreadPlan *
|
|
|
|
Thread::QueueThreadPlanForStepThrough (bool abort_other_plans, bool stop_other_threads)
|
|
|
|
{
|
2010-09-28 09:25:32 +08:00
|
|
|
// Try the dynamic loader first:
|
2010-06-09 00:52:24 +08:00
|
|
|
ThreadPlanSP thread_plan_sp(GetProcess().GetDynamicLoader()->GetStepThroughTrampolinePlan (*this, stop_other_threads));
|
2010-09-28 09:25:32 +08:00
|
|
|
// If that didn't come up with anything, try the ObjC runtime plugin:
|
|
|
|
if (thread_plan_sp.get() == NULL)
|
|
|
|
{
|
|
|
|
ObjCLanguageRuntime *objc_runtime = GetProcess().GetObjCLanguageRuntime();
|
|
|
|
if (objc_runtime)
|
|
|
|
thread_plan_sp = objc_runtime->GetStepThroughTrampolinePlan (*this, stop_other_threads);
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
if (thread_plan_sp.get() == NULL)
|
|
|
|
{
|
|
|
|
thread_plan_sp.reset(new ThreadPlanStepThrough (*this, stop_other_threads));
|
|
|
|
if (thread_plan_sp && !thread_plan_sp->ValidatePlan (NULL))
|
2010-07-23 23:37:46 +08:00
|
|
|
return NULL;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
QueueThreadPlan (thread_plan_sp, abort_other_plans);
|
|
|
|
return thread_plan_sp.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
ThreadPlan *
|
|
|
|
Thread::QueueThreadPlanForCallFunction (bool abort_other_plans,
|
|
|
|
Address& function,
|
|
|
|
lldb::addr_t arg,
|
|
|
|
bool stop_other_threads,
|
|
|
|
bool discard_on_error)
|
|
|
|
{
|
|
|
|
ThreadPlanSP thread_plan_sp (new ThreadPlanCallFunction (*this, function, arg, stop_other_threads, discard_on_error));
|
|
|
|
QueueThreadPlan (thread_plan_sp, abort_other_plans);
|
|
|
|
return thread_plan_sp.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
ThreadPlan *
|
|
|
|
Thread::QueueThreadPlanForCallFunction (bool abort_other_plans,
|
|
|
|
Address& function,
|
|
|
|
ValueList &args,
|
|
|
|
bool stop_other_threads,
|
|
|
|
bool discard_on_error)
|
|
|
|
{
|
|
|
|
ThreadPlanSP thread_plan_sp (new ThreadPlanCallFunction (*this, function, args, stop_other_threads, discard_on_error));
|
|
|
|
QueueThreadPlan (thread_plan_sp, abort_other_plans);
|
|
|
|
return thread_plan_sp.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
ThreadPlan *
|
|
|
|
Thread::QueueThreadPlanForRunToAddress (bool abort_other_plans,
|
|
|
|
Address &target_addr,
|
|
|
|
bool stop_other_threads)
|
|
|
|
{
|
|
|
|
ThreadPlanSP thread_plan_sp (new ThreadPlanRunToAddress (*this, target_addr, stop_other_threads));
|
|
|
|
QueueThreadPlan (thread_plan_sp, abort_other_plans);
|
|
|
|
return thread_plan_sp.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
ThreadPlan *
|
|
|
|
Thread::QueueThreadPlanForStepUntil (bool abort_other_plans,
|
|
|
|
lldb::addr_t *address_list,
|
|
|
|
size_t num_addresses,
|
|
|
|
bool stop_other_threads)
|
|
|
|
{
|
|
|
|
ThreadPlanSP thread_plan_sp (new ThreadPlanStepUntil (*this, address_list, num_addresses, stop_other_threads));
|
|
|
|
QueueThreadPlan (thread_plan_sp, abort_other_plans);
|
|
|
|
return thread_plan_sp.get();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t
|
|
|
|
Thread::GetIndexID () const
|
|
|
|
{
|
|
|
|
return m_index_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Thread::DumpThreadPlans (lldb_private::Stream *s) const
|
|
|
|
{
|
|
|
|
uint32_t stack_size = m_plan_stack.size();
|
2010-09-04 06:45:01 +08:00
|
|
|
int i;
|
|
|
|
s->Printf ("Plan Stack for thread #%u: tid = 0x%4.4x, stack_size = %d\n", GetIndexID(), GetID(), stack_size);
|
|
|
|
for (i = stack_size - 1; i >= 0; i--)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
s->Printf ("Element %d: ", i);
|
|
|
|
s->IndentMore();
|
|
|
|
m_plan_stack[i]->GetDescription (s, eDescriptionLevelFull);
|
|
|
|
s->IndentLess();
|
|
|
|
s->EOL();
|
|
|
|
}
|
|
|
|
|
|
|
|
stack_size = m_completed_plan_stack.size();
|
|
|
|
s->Printf ("Completed Plan Stack: %d elements.\n", stack_size);
|
2010-09-04 06:45:01 +08:00
|
|
|
for (i = stack_size - 1; i >= 0; i--)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
s->Printf ("Element %d: ", i);
|
|
|
|
s->IndentMore();
|
|
|
|
m_completed_plan_stack[i]->GetDescription (s, eDescriptionLevelFull);
|
|
|
|
s->IndentLess();
|
|
|
|
s->EOL();
|
|
|
|
}
|
|
|
|
|
|
|
|
stack_size = m_discarded_plan_stack.size();
|
|
|
|
s->Printf ("Discarded Plan Stack: %d elements.\n", stack_size);
|
2010-09-04 06:45:01 +08:00
|
|
|
for (int i = stack_size - 1; i >= 0; i--)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
s->Printf ("Element %d: ", i);
|
|
|
|
s->IndentMore();
|
|
|
|
m_discarded_plan_stack[i]->GetDescription (s, eDescriptionLevelFull);
|
|
|
|
s->IndentLess();
|
|
|
|
s->EOL();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Target *
|
|
|
|
Thread::CalculateTarget ()
|
|
|
|
{
|
|
|
|
return m_process.CalculateTarget();
|
|
|
|
}
|
|
|
|
|
|
|
|
Process *
|
|
|
|
Thread::CalculateProcess ()
|
|
|
|
{
|
|
|
|
return &m_process;
|
|
|
|
}
|
|
|
|
|
|
|
|
Thread *
|
|
|
|
Thread::CalculateThread ()
|
|
|
|
{
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
StackFrame *
|
|
|
|
Thread::CalculateStackFrame ()
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-10-04 09:05:56 +08:00
|
|
|
Thread::CalculateExecutionContext (ExecutionContext &exe_ctx)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-10-04 09:05:56 +08:00
|
|
|
m_process.CalculateExecutionContext (exe_ctx);
|
2010-06-09 00:52:24 +08:00
|
|
|
exe_ctx.thread = this;
|
|
|
|
exe_ctx.frame = NULL;
|
|
|
|
}
|
|
|
|
|
2010-08-25 08:35:26 +08:00
|
|
|
|
|
|
|
StackFrameList &
|
|
|
|
Thread::GetStackFrameList ()
|
|
|
|
{
|
2010-08-26 10:28:22 +08:00
|
|
|
if (m_curr_frames_ap.get() == NULL)
|
2010-09-04 01:10:42 +08:00
|
|
|
m_curr_frames_ap.reset (new StackFrameList (*this, m_prev_frames_sp, true));
|
2010-08-26 10:28:22 +08:00
|
|
|
return *m_curr_frames_ap;
|
2010-08-25 08:35:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-08-12 10:14:28 +08:00
|
|
|
uint32_t
|
|
|
|
Thread::GetStackFrameCount()
|
|
|
|
{
|
2010-08-25 08:35:26 +08:00
|
|
|
return GetStackFrameList().GetNumFrames();
|
|
|
|
}
|
Added support for inlined stack frames being represented as real stack frames
which is now on by default. Frames are gotten from the unwinder as concrete
frames, then if inline frames are to be shown, extra information to track
and reconstruct these frames is cached with each Thread and exanded as needed.
I added an inline height as part of the lldb_private::StackID class, the class
that helps us uniquely identify stack frames. This allows for two frames to
shared the same call frame address, yet differ only in inline height.
Fixed setting breakpoint by address to not require addresses to resolve.
A quick example:
% cat main.cpp
% ./build/Debug/lldb test/stl/a.out
Current executable set to 'test/stl/a.out' (x86_64).
(lldb) breakpoint set --address 0x0000000100000d31
Breakpoint created: 1: address = 0x0000000100000d31, locations = 1
(lldb) r
Launching 'a.out' (x86_64)
(lldb) Process 38031 Stopped
* thread #1: tid = 0x2e03, pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_data() const at /usr/include/c++/4.2.1/bits/basic_string.h:280, stop reason = breakpoint 1.1, queue = com.apple.main-thread
277
278 _CharT*
279 _M_data() const
280 -> { return _M_dataplus._M_p; }
281
282 _CharT*
283 _M_data(_CharT* __p)
(lldb) bt
thread #1: tid = 0x2e03, stop reason = breakpoint 1.1, queue = com.apple.main-thread
frame #0: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_data() const at /usr/include/c++/4.2.1/bits/basic_string.h:280
frame #1: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_rep() const at /usr/include/c++/4.2.1/bits/basic_string.h:288
frame #2: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::size() const at /usr/include/c++/4.2.1/bits/basic_string.h:606
frame #3: pc = 0x0000000100000d31, where = a.out`main [inlined] operator<< <char, std::char_traits<char>, std::allocator<char> > at /usr/include/c++/4.2.1/bits/basic_string.h:2414
frame #4: pc = 0x0000000100000d31, where = a.out`main + 33 at /Volumes/work/gclayton/Documents/src/lldb/test/stl/main.cpp:14
frame #5: pc = 0x0000000100000d08, where = a.out`start + 52
Each inline frame contains only the variables that they contain and each inlined
stack frame is treated as a single entity.
llvm-svn: 111877
2010-08-24 08:45:41 +08:00
|
|
|
|
|
|
|
|
2010-08-25 08:35:26 +08:00
|
|
|
void
|
|
|
|
Thread::ClearStackFrames ()
|
|
|
|
{
|
2010-09-04 01:10:42 +08:00
|
|
|
if (m_curr_frames_ap.get() && m_curr_frames_ap->GetNumFrames (false) > 1)
|
|
|
|
m_prev_frames_sp.reset (m_curr_frames_ap.release());
|
|
|
|
else
|
|
|
|
m_curr_frames_ap.release();
|
|
|
|
|
|
|
|
// StackFrameList::Merge (m_curr_frames_ap, m_prev_frames_sp);
|
|
|
|
// assert (m_curr_frames_ap.get() == NULL);
|
2010-08-12 10:14:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
lldb::StackFrameSP
|
|
|
|
Thread::GetStackFrameAtIndex (uint32_t idx)
|
|
|
|
{
|
2010-09-03 05:44:10 +08:00
|
|
|
return GetStackFrameList().GetFrameAtIndex(idx);
|
2010-08-12 10:14:28 +08:00
|
|
|
}
|
|
|
|
|
2010-10-11 06:28:11 +08:00
|
|
|
uint32_t
|
|
|
|
Thread::GetSelectedFrameIndex ()
|
|
|
|
{
|
|
|
|
return GetStackFrameList().GetSelectedFrameIndex();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
lldb::StackFrameSP
|
2010-08-27 05:32:51 +08:00
|
|
|
Thread::GetSelectedFrame ()
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-08-27 05:32:51 +08:00
|
|
|
return GetStackFrameAtIndex (GetStackFrameList().GetSelectedFrameIndex());
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t
|
2010-08-27 05:32:51 +08:00
|
|
|
Thread::SetSelectedFrame (lldb_private::StackFrame *frame)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-08-27 05:32:51 +08:00
|
|
|
return GetStackFrameList().SetSelectedFrame(frame);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-08-27 05:32:51 +08:00
|
|
|
Thread::SetSelectedFrameByIndex (uint32_t idx)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-08-27 05:32:51 +08:00
|
|
|
GetStackFrameList().SetSelectedFrameByIndex(idx);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-10-04 09:05:56 +08:00
|
|
|
Thread::DumpUsingSettingsFormat (Stream &strm, uint32_t frame_idx)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-10-04 09:05:56 +08:00
|
|
|
ExecutionContext exe_ctx;
|
|
|
|
SymbolContext frame_sc;
|
|
|
|
CalculateExecutionContext (exe_ctx);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2010-10-04 09:05:56 +08:00
|
|
|
if (frame_idx != LLDB_INVALID_INDEX32)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-10-04 09:05:56 +08:00
|
|
|
StackFrameSP frame_sp(GetStackFrameAtIndex (frame_idx));
|
2010-06-09 00:52:24 +08:00
|
|
|
if (frame_sp)
|
|
|
|
{
|
2010-10-04 09:05:56 +08:00
|
|
|
exe_ctx.frame = frame_sp.get();
|
|
|
|
frame_sc = exe_ctx.frame->GetSymbolContext(eSymbolContextEverything);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-04 09:05:56 +08:00
|
|
|
const char *thread_format = GetProcess().GetTarget().GetDebugger().GetThreadFormat();
|
|
|
|
assert (thread_format);
|
|
|
|
const char *end = NULL;
|
|
|
|
Debugger::FormatPrompt (thread_format,
|
|
|
|
exe_ctx.frame ? &frame_sc : NULL,
|
|
|
|
&exe_ctx,
|
|
|
|
NULL,
|
|
|
|
strm,
|
|
|
|
&end);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
lldb::ThreadSP
|
|
|
|
Thread::GetSP ()
|
|
|
|
{
|
|
|
|
return m_process.GetThreadList().GetThreadSPForThreadPtr(this);
|
|
|
|
}
|
2010-09-08 11:14:33 +08:00
|
|
|
|
|
|
|
lldb::UserSettingsControllerSP
|
|
|
|
Thread::GetSettingsController (bool finish)
|
|
|
|
{
|
|
|
|
static UserSettingsControllerSP g_settings_controller (new ThreadSettingsController);
|
|
|
|
static bool initialized = false;
|
|
|
|
|
|
|
|
if (!initialized)
|
|
|
|
{
|
|
|
|
initialized = UserSettingsController::InitializeSettingsController (g_settings_controller,
|
|
|
|
Thread::ThreadSettingsController::global_settings_table,
|
|
|
|
Thread::ThreadSettingsController::instance_settings_table);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (finish)
|
|
|
|
{
|
|
|
|
UserSettingsController::FinalizeSettingsController (g_settings_controller);
|
|
|
|
g_settings_controller.reset();
|
|
|
|
initialized = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return g_settings_controller;
|
|
|
|
}
|
|
|
|
|
2010-09-27 08:30:10 +08:00
|
|
|
void
|
|
|
|
Thread::UpdateInstanceName ()
|
|
|
|
{
|
|
|
|
StreamString sstr;
|
|
|
|
const char *name = GetName();
|
|
|
|
|
|
|
|
if (name && name[0] != '\0')
|
|
|
|
sstr.Printf ("%s", name);
|
|
|
|
else if ((GetIndexID() != 0) || (GetID() != 0))
|
|
|
|
sstr.Printf ("0x%4.4x", GetIndexID(), GetID());
|
|
|
|
|
|
|
|
if (sstr.GetSize() > 0)
|
|
|
|
Thread::GetSettingsController()->RenameInstanceSettings (GetInstanceName().AsCString(), sstr.GetData());
|
|
|
|
}
|
|
|
|
|
2010-09-08 11:14:33 +08:00
|
|
|
//--------------------------------------------------------------
|
|
|
|
// class Thread::ThreadSettingsController
|
|
|
|
//--------------------------------------------------------------
|
|
|
|
|
|
|
|
Thread::ThreadSettingsController::ThreadSettingsController () :
|
|
|
|
UserSettingsController ("thread", Process::GetSettingsController())
|
|
|
|
{
|
2010-09-09 01:48:55 +08:00
|
|
|
m_default_settings.reset (new ThreadInstanceSettings (*this, false,
|
|
|
|
InstanceSettings::GetDefaultName().AsCString()));
|
2010-09-08 11:14:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Thread::ThreadSettingsController::~ThreadSettingsController ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
lldb::InstanceSettingsSP
|
2010-09-19 10:33:57 +08:00
|
|
|
Thread::ThreadSettingsController::CreateInstanceSettings (const char *instance_name)
|
2010-09-08 11:14:33 +08:00
|
|
|
{
|
2010-09-09 01:48:55 +08:00
|
|
|
ThreadInstanceSettings *new_settings = new ThreadInstanceSettings (*(Thread::GetSettingsController().get()),
|
|
|
|
false, instance_name);
|
2010-09-08 11:14:33 +08:00
|
|
|
lldb::InstanceSettingsSP new_settings_sp (new_settings);
|
|
|
|
return new_settings_sp;
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------
|
|
|
|
// class ThreadInstanceSettings
|
|
|
|
//--------------------------------------------------------------
|
|
|
|
|
2010-09-09 01:48:55 +08:00
|
|
|
ThreadInstanceSettings::ThreadInstanceSettings (UserSettingsController &owner, bool live_instance, const char *name) :
|
2010-09-17 03:05:55 +08:00
|
|
|
InstanceSettings (owner, (name == NULL ? InstanceSettings::InvalidName().AsCString() : name), live_instance),
|
2010-09-08 11:14:33 +08:00
|
|
|
m_avoid_regexp_ap ()
|
|
|
|
{
|
2010-09-10 02:26:37 +08:00
|
|
|
// CopyInstanceSettings is a pure virtual function in InstanceSettings; it therefore cannot be called
|
|
|
|
// until the vtables for ThreadInstanceSettings are properly set up, i.e. AFTER all the initializers.
|
|
|
|
// For this reason it has to be called here, rather than in the initializer or in the parent constructor.
|
2010-09-17 03:05:55 +08:00
|
|
|
// This is true for CreateInstanceName() too.
|
|
|
|
|
|
|
|
if (GetInstanceName() == InstanceSettings::InvalidName())
|
|
|
|
{
|
|
|
|
ChangeInstanceName (std::string (CreateInstanceName().AsCString()));
|
|
|
|
m_owner.RegisterInstanceSettings (this);
|
|
|
|
}
|
2010-09-10 02:26:37 +08:00
|
|
|
|
|
|
|
if (live_instance)
|
2010-09-08 11:14:33 +08:00
|
|
|
{
|
|
|
|
const lldb::InstanceSettingsSP &pending_settings = m_owner.FindPendingSettings (m_instance_name);
|
|
|
|
CopyInstanceSettings (pending_settings,false);
|
2010-09-10 02:26:37 +08:00
|
|
|
//m_owner.RemovePendingSettings (m_instance_name);
|
2010-09-08 11:14:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ThreadInstanceSettings::ThreadInstanceSettings (const ThreadInstanceSettings &rhs) :
|
|
|
|
InstanceSettings (*(Thread::GetSettingsController().get()), CreateInstanceName().AsCString()),
|
|
|
|
m_avoid_regexp_ap ()
|
|
|
|
{
|
|
|
|
if (m_instance_name != InstanceSettings::GetDefaultName())
|
|
|
|
{
|
|
|
|
const lldb::InstanceSettingsSP &pending_settings = m_owner.FindPendingSettings (m_instance_name);
|
|
|
|
CopyInstanceSettings (pending_settings,false);
|
|
|
|
m_owner.RemovePendingSettings (m_instance_name);
|
|
|
|
}
|
|
|
|
if (rhs.m_avoid_regexp_ap.get() != NULL)
|
|
|
|
m_avoid_regexp_ap.reset(new RegularExpression(rhs.m_avoid_regexp_ap->GetText()));
|
|
|
|
}
|
|
|
|
|
|
|
|
ThreadInstanceSettings::~ThreadInstanceSettings ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ThreadInstanceSettings&
|
|
|
|
ThreadInstanceSettings::operator= (const ThreadInstanceSettings &rhs)
|
|
|
|
{
|
|
|
|
if (this != &rhs)
|
|
|
|
{
|
|
|
|
if (rhs.m_avoid_regexp_ap.get() != NULL)
|
|
|
|
m_avoid_regexp_ap.reset(new RegularExpression(rhs.m_avoid_regexp_ap->GetText()));
|
|
|
|
else
|
|
|
|
m_avoid_regexp_ap.reset(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
ThreadInstanceSettings::UpdateInstanceSettingsVariable (const ConstString &var_name,
|
|
|
|
const char *index_value,
|
|
|
|
const char *value,
|
|
|
|
const ConstString &instance_name,
|
|
|
|
const SettingEntry &entry,
|
|
|
|
lldb::VarSetOperationType op,
|
|
|
|
Error &err,
|
|
|
|
bool pending)
|
|
|
|
{
|
|
|
|
if (var_name == StepAvoidRegexpVarName())
|
|
|
|
{
|
|
|
|
std::string regexp_text;
|
|
|
|
if (m_avoid_regexp_ap.get() != NULL)
|
|
|
|
regexp_text.append (m_avoid_regexp_ap->GetText());
|
|
|
|
UserSettingsController::UpdateStringVariable (op, regexp_text, value, err);
|
|
|
|
if (regexp_text.empty())
|
|
|
|
m_avoid_regexp_ap.reset();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_avoid_regexp_ap.reset(new RegularExpression(regexp_text.c_str()));
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ThreadInstanceSettings::CopyInstanceSettings (const lldb::InstanceSettingsSP &new_settings,
|
|
|
|
bool pending)
|
|
|
|
{
|
|
|
|
if (new_settings.get() == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ThreadInstanceSettings *new_process_settings = (ThreadInstanceSettings *) new_settings.get();
|
|
|
|
if (new_process_settings->GetSymbolsToAvoidRegexp() != NULL)
|
|
|
|
m_avoid_regexp_ap.reset (new RegularExpression (new_process_settings->GetSymbolsToAvoidRegexp()->GetText()));
|
|
|
|
else
|
|
|
|
m_avoid_regexp_ap.reset ();
|
|
|
|
}
|
|
|
|
|
2010-09-21 05:37:42 +08:00
|
|
|
bool
|
2010-09-08 11:14:33 +08:00
|
|
|
ThreadInstanceSettings::GetInstanceSettingsValue (const SettingEntry &entry,
|
2010-09-21 04:44:43 +08:00
|
|
|
const ConstString &var_name,
|
|
|
|
StringList &value,
|
2010-09-21 05:37:42 +08:00
|
|
|
Error *err)
|
2010-09-08 11:14:33 +08:00
|
|
|
{
|
|
|
|
if (var_name == StepAvoidRegexpVarName())
|
|
|
|
{
|
|
|
|
if (m_avoid_regexp_ap.get() != NULL)
|
|
|
|
{
|
|
|
|
std::string regexp_text("\"");
|
|
|
|
regexp_text.append(m_avoid_regexp_ap->GetText());
|
|
|
|
regexp_text.append ("\"");
|
|
|
|
value.AppendString (regexp_text.c_str());
|
|
|
|
}
|
2010-09-21 04:44:43 +08:00
|
|
|
|
2010-09-08 11:14:33 +08:00
|
|
|
}
|
|
|
|
else
|
2010-09-21 05:37:42 +08:00
|
|
|
{
|
|
|
|
if (err)
|
|
|
|
err->SetErrorStringWithFormat ("unrecognized variable name '%s'", var_name.AsCString());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2010-09-08 11:14:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const ConstString
|
|
|
|
ThreadInstanceSettings::CreateInstanceName ()
|
|
|
|
{
|
|
|
|
static int instance_count = 1;
|
|
|
|
StreamString sstr;
|
|
|
|
|
|
|
|
sstr.Printf ("thread_%d", instance_count);
|
|
|
|
++instance_count;
|
|
|
|
|
|
|
|
const ConstString ret_val (sstr.GetData());
|
|
|
|
return ret_val;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ConstString &
|
|
|
|
ThreadInstanceSettings::StepAvoidRegexpVarName ()
|
|
|
|
{
|
|
|
|
static ConstString run_args_var_name ("step-avoid-regexp");
|
|
|
|
|
|
|
|
return run_args_var_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------
|
|
|
|
// ThreadSettingsController Variable Tables
|
|
|
|
//--------------------------------------------------
|
|
|
|
|
|
|
|
SettingEntry
|
|
|
|
Thread::ThreadSettingsController::global_settings_table[] =
|
|
|
|
{
|
|
|
|
//{ "var-name", var-type , "default", enum-table, init'd, hidden, "help-text"},
|
|
|
|
{ NULL, eSetVarTypeNone, NULL, NULL, 0, 0, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
SettingEntry
|
|
|
|
Thread::ThreadSettingsController::instance_settings_table[] =
|
|
|
|
{
|
|
|
|
//{ "var-name", var-type, "default", enum-table, init'd, hidden, "help-text"},
|
|
|
|
{ "step-avoid-regexp", eSetVarTypeString, "", NULL, false, false, "A regular expression defining functions step-in won't stop in." },
|
|
|
|
{ NULL, eSetVarTypeNone, NULL, NULL, 0, 0, NULL }
|
|
|
|
};
|
|
|
|
|
2010-09-24 01:40:12 +08:00
|
|
|
lldb::StackFrameSP
|
|
|
|
Thread::GetStackFrameSPForStackFramePtr (StackFrame *stack_frame_ptr)
|
|
|
|
{
|
|
|
|
return GetStackFrameList().GetStackFrameSPForStackFramePtr (stack_frame_ptr);
|
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
const char *
|
|
|
|
Thread::StopReasonAsCString (lldb::StopReason reason)
|
|
|
|
{
|
|
|
|
switch (reason)
|
|
|
|
{
|
|
|
|
case eStopReasonInvalid: return "invalid";
|
|
|
|
case eStopReasonNone: return "none";
|
|
|
|
case eStopReasonTrace: return "trace";
|
|
|
|
case eStopReasonBreakpoint: return "breakpoint";
|
|
|
|
case eStopReasonWatchpoint: return "watchpoint";
|
|
|
|
case eStopReasonSignal: return "signal";
|
|
|
|
case eStopReasonException: return "exception";
|
|
|
|
case eStopReasonPlanComplete: return "plan complete";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static char unknown_state_string[64];
|
|
|
|
snprintf(unknown_state_string, sizeof (unknown_state_string), "StopReason = %i", reason);
|
|
|
|
return unknown_state_string;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
Thread::RunModeAsCString (lldb::RunMode mode)
|
|
|
|
{
|
|
|
|
switch (mode)
|
|
|
|
{
|
|
|
|
case eOnlyThisThread: return "only this thread";
|
|
|
|
case eAllThreads: return "all threads";
|
|
|
|
case eOnlyDuringStepping: return "only during stepping";
|
|
|
|
}
|
|
|
|
|
|
|
|
static char unknown_state_string[64];
|
|
|
|
snprintf(unknown_state_string, sizeof (unknown_state_string), "RunMode = %i", mode);
|
|
|
|
return unknown_state_string;
|
|
|
|
}
|