LLDB mainline
lldb_private::ThreadPlanStepRange Class Referenceabstract

#include <ThreadPlanStepRange.h>

Inheritance diagram for lldb_private::ThreadPlanStepRange:
[legend]

Public Member Functions

 ThreadPlanStepRange (ThreadPlanKind kind, const char *name, Thread &thread, const AddressRange &range, const SymbolContext &addr_context, lldb::RunMode stop_others, bool given_ranges_only=false)
 ~ThreadPlanStepRange () override
void GetDescription (Stream *s, lldb::DescriptionLevel level) override=0
 Print a description of this thread to the stream s.
bool ValidatePlan (Stream *error) override
 Returns whether this plan could be successfully created.
bool ShouldStop (Event *event_ptr) override=0
Vote ShouldReportStop (Event *event_ptr) override
bool StopOthers () override
lldb::StateType GetPlanRunState () override
bool WillStop () override
bool MischiefManaged () override
void DidPush () override
bool IsPlanStale () override
void AddRange (const AddressRange &new_range)
Public Member Functions inherited from lldb_private::ThreadPlan
virtual ~ThreadPlan ()
const char * GetName () const
 Returns the name of this thread plan.
ThreadGetThread ()
 Returns the Thread that is using this thread plan.
TargetGetTarget ()
const TargetGetTarget () const
void ClearThreadCache ()
 Clear the Thread* cache.
bool TracerExplainsStop ()
lldb::StateType RunState ()
bool PlanExplainsStop (Event *event_ptr)
virtual bool ShouldAutoContinue (Event *event_ptr)
 Returns whether this thread plan overrides the ShouldStop of subsequently processed plans.
Vote ShouldReportRun (Event *event_ptr)
virtual void SetStopOthers (bool new_value)
virtual bool SupportsResumeOthers ()
virtual bool ShouldRunBeforePublicStop ()
bool WillResume (lldb::StateType resume_state, bool current_plan)
bool IsControllingPlan ()
virtual bool IsLeafPlan ()
bool SetIsControllingPlan (bool value)
virtual bool OkayToDiscard ()
void SetOkayToDiscard (bool value)
virtual void ThreadDestroyed ()
bool GetPrivate ()
void SetPrivate (bool input)
virtual void DidPop ()
ThreadPlanKind GetKind () const
bool IsPlanComplete ()
void SetPlanComplete (bool success=true)
bool PlanSucceeded ()
virtual bool IsBasePlan ()
lldb::ThreadPlanTracerSPGetThreadPlanTracer ()
void SetThreadPlanTracer (lldb::ThreadPlanTracerSP new_tracer_sp)
void DoTraceLog ()
virtual lldb::ValueObjectSP GetReturnValueObject ()
virtual lldb::ExpressionVariableSP GetExpressionVariable ()
virtual void RestoreThreadState ()
virtual bool IsVirtualStep ()
bool SetIterationCount (size_t count)
virtual lldb::RunDirection GetDirection () const
Public Member Functions inherited from lldb_private::UserID
 UserID (lldb::user_id_t uid=LLDB_INVALID_UID)
 Construct with optional user ID.
 ~UserID ()=default
 Destructor.
void Clear ()
 Clears the object state.
lldb::user_id_t GetID () const
 Get accessor for the user ID.
void SetID (lldb::user_id_t uid)
 Set accessor for the user ID.

Protected Member Functions

bool InRange ()
lldb::FrameComparison CompareCurrentFrameToStartFrame ()
bool InSymbol ()
void DumpRanges (Stream *s)
DisassemblerGetDisassembler ()
InstructionListGetInstructionsForAddress (lldb::addr_t addr, size_t &range_index, size_t &insn_offset)
bool SetNextBranchBreakpoint ()
bool IsNextBranchBreakpointStop (lldb::StopInfoSP stop_info_sp)
void ClearNextBranchBreakpoint ()
void ClearNextBranchBreakpointExplainedStop ()
bool NextRangeBreakpointExplainsStop (lldb::StopInfoSP stop_info_sp)
Protected Member Functions inherited from lldb_private::ThreadPlan
 ThreadPlan (ThreadPlanKind kind, const char *name, Thread &thread, Vote report_stop_vote, Vote report_run_vote)
virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan)
virtual bool DoPlanExplainsStop (Event *event_ptr)=0
void PushPlan (lldb::ThreadPlanSP &thread_plan_sp)
ThreadPlanGetPreviousPlan ()
lldb::StopInfoSP GetPrivateStopInfo ()
void SetStopInfo (lldb::StopInfoSP stop_reason_sp)
bool IsUsuallyUnexplainedStopReason (lldb::StopReason)

Protected Attributes

SymbolContext m_addr_context
std::vector< AddressRangem_address_ranges
lldb::RunMode m_stop_others
StackID m_stack_id
StackID m_parent_stack_id
bool m_no_more_plans
bool m_first_run_event
lldb::BreakpointSP m_next_branch_bp_sp
bool m_use_fast_step
bool m_given_ranges_only
bool m_found_calls = false
Protected Attributes inherited from lldb_private::ThreadPlan
Status m_status
Processm_process
lldb::tid_t m_tid
Vote m_report_stop_vote
Vote m_report_run_vote
bool m_takes_iteration_count
bool m_could_not_resolve_hw_bp
int32_t m_iteration_count = 1
Protected Attributes inherited from lldb_private::UserID
lldb::user_id_t m_uid
 The user ID that uniquely identifies an object.

Private Member Functions

 ThreadPlanStepRange (const ThreadPlanStepRange &)=delete
const ThreadPlanStepRangeoperator= (const ThreadPlanStepRange &)=delete

Private Attributes

std::vector< lldb::DisassemblerSPm_instruction_ranges

Additional Inherited Members

Public Types inherited from lldb_private::ThreadPlan
enum  ThreadPlanKind {
  eKindGeneric , eKindNull , eKindBase , eKindCallFunction ,
  eKindPython , eKindStepInstruction , eKindStepOut , eKindStepOverBreakpoint ,
  eKindStepOverRange , eKindStepInRange , eKindRunToAddress , eKindStepThrough ,
  eKindStepUntil , eKindSingleThreadTimeout
}

Detailed Description

Definition at line 20 of file ThreadPlanStepRange.h.

Constructor & Destructor Documentation

◆ ThreadPlanStepRange() [1/2]

◆ ~ThreadPlanStepRange()

ThreadPlanStepRange::~ThreadPlanStepRange ( )
override

Definition at line 51 of file ThreadPlanStepRange.cpp.

References ClearNextBranchBreakpoint().

◆ ThreadPlanStepRange() [2/2]

lldb_private::ThreadPlanStepRange::ThreadPlanStepRange ( const ThreadPlanStepRange & )
privatedelete

References ThreadPlanStepRange().

Member Function Documentation

◆ AddRange()

void ThreadPlanStepRange::AddRange ( const AddressRange & new_range)

◆ ClearNextBranchBreakpoint()

◆ ClearNextBranchBreakpointExplainedStop()

void ThreadPlanStepRange::ClearNextBranchBreakpointExplainedStop ( )
protected

◆ CompareCurrentFrameToStartFrame()

◆ DidPush()

void ThreadPlanStepRange::DidPush ( )
overridevirtual

◆ DumpRanges()

◆ GetDescription()

void lldb_private::ThreadPlanStepRange::GetDescription ( Stream * s,
lldb::DescriptionLevel level )
overridepure virtual

Print a description of this thread to the stream s.

thread. Don't expect that the result of GetThread is valid in the description method. This might get called when the underlying Thread has not been reported, so we only know the TID and not the thread.

Parameters
[in]sThe stream to which to print the description.
[in]levelThe level of description desired. Note that eDescriptionLevelBrief will be used in the stop message printed when the plan is complete.

Implements lldb_private::ThreadPlan.

Implemented in lldb_private::ThreadPlanStepInRange, and lldb_private::ThreadPlanStepOverRange.

References error().

◆ GetDisassembler()

Disassembler * lldb_private::ThreadPlanStepRange::GetDisassembler ( )
protected

◆ GetInstructionsForAddress()

InstructionList * ThreadPlanStepRange::GetInstructionsForAddress ( lldb::addr_t addr,
size_t & range_index,
size_t & insn_offset )
protected

◆ GetPlanRunState()

StateType ThreadPlanStepRange::GetPlanRunState ( )
overridevirtual

◆ InRange()

◆ InSymbol()

◆ IsNextBranchBreakpointStop()

bool ThreadPlanStepRange::IsNextBranchBreakpointStop ( lldb::StopInfoSP stop_info_sp)
protected

◆ IsPlanStale()

◆ MischiefManaged()

◆ NextRangeBreakpointExplainsStop()

◆ operator=()

const ThreadPlanStepRange & lldb_private::ThreadPlanStepRange::operator= ( const ThreadPlanStepRange & )
privatedelete

References ThreadPlanStepRange().

◆ SetNextBranchBreakpoint()

bool ThreadPlanStepRange::SetNextBranchBreakpoint ( )
protected

Definition at line 331 of file ThreadPlanStepRange.cpp.

References lldb_private::LineEntry::ApplyFileMappings(), lldb_private::Address::CalculateSymbolContextBlock(), lldb_private::LineEntry::column, lldb_private::Target::CreateBreakpoint(), lldb_private::ThreadPlan::eKindStepOverRange, lldb_private::LineEntry::file_sp, lldb_private::AddressRange::GetBaseAddress(), lldb_private::InlineFunctionInfo::GetCallSite(), lldb_private::Declaration::GetColumn(), lldb_private::Block::GetContainingInlinedBlock(), lldb_private::Declaration::GetFile(), lldb_private::LineEntry::GetFile(), lldb_private::Address::GetFileAddress(), lldb_private::InstructionList::GetIndexOfNextBranchInstruction(), lldb_private::Block::GetInlinedParent(), lldb_private::InstructionList::GetInstructionAtIndex(), GetInstructionsForAddress(), lldb_private::ThreadPlan::GetKind(), lldb_private::Declaration::GetLine(), lldb_private::Address::GetLoadAddress(), lldb_private::GetLog(), lldb_private::Thread::GetRegisterContext(), lldb_private::InstructionList::GetSize(), lldb_private::ThreadPlan::GetTarget(), lldb_private::ThreadPlan::GetThread(), lldb_private::Address::IsValid(), lldb_private::LineEntry::IsValid(), lldb_private::LineEntry::line, LLDB_INVALID_BREAK_ID, LLDB_LOG, LLDB_LOGF, lldb_private::ThreadPlan::m_could_not_resolve_hw_bp, m_found_calls, m_next_branch_bp_sp, lldb_private::ThreadPlan::m_process, lldb_private::ThreadPlan::m_tid, m_use_fast_step, lldb_private::LineEntry::original_file_sp, lldb_private::LineEntry::range, lldb_private::Address::Slide(), lldb_private::Step, and UINT32_MAX.

Referenced by DidPush(), lldb_private::ThreadPlanStepInRange::ShouldStop(), and lldb_private::ThreadPlanStepOverRange::ShouldStop().

◆ ShouldReportStop()

Vote ThreadPlanStepRange::ShouldReportStop ( Event * event_ptr)
overridevirtual

◆ ShouldStop()

bool lldb_private::ThreadPlanStepRange::ShouldStop ( Event * event_ptr)
overridepure virtual

◆ StopOthers()

bool ThreadPlanStepRange::StopOthers ( )
overridevirtual

◆ ValidatePlan()

bool ThreadPlanStepRange::ValidatePlan ( Stream * error)
overridevirtual

Returns whether this plan could be successfully created.

Parameters
[in]errorA stream to which to print some reason why the plan could not be created. Can be NULL.
Returns
true if the plan should be queued, false otherwise.

Implements lldb_private::ThreadPlan.

Definition at line 58 of file ThreadPlanStepRange.cpp.

References error(), and lldb_private::ThreadPlan::m_could_not_resolve_hw_bp.

Referenced by lldb_private::ThreadPlanStepOut::QueueInlinedStepPlan().

◆ WillStop()

bool ThreadPlanStepRange::WillStop ( )
overridevirtual

Implements lldb_private::ThreadPlan.

Definition at line 493 of file ThreadPlanStepRange.cpp.

Member Data Documentation

◆ m_addr_context

◆ m_address_ranges

std::vector<AddressRange> lldb_private::ThreadPlanStepRange::m_address_ranges
protected

◆ m_first_run_event

bool lldb_private::ThreadPlanStepRange::m_first_run_event
protected

Definition at line 81 of file ThreadPlanStepRange.h.

Referenced by ThreadPlanStepRange().

◆ m_found_calls

bool lldb_private::ThreadPlanStepRange::m_found_calls = false
protected

◆ m_given_ranges_only

bool lldb_private::ThreadPlanStepRange::m_given_ranges_only
protected

Definition at line 85 of file ThreadPlanStepRange.h.

Referenced by InRange(), and ThreadPlanStepRange().

◆ m_instruction_ranges

std::vector<lldb::DisassemblerSP> lldb_private::ThreadPlanStepRange::m_instruction_ranges
private

Definition at line 94 of file ThreadPlanStepRange.h.

Referenced by AddRange(), and GetInstructionsForAddress().

◆ m_next_branch_bp_sp

◆ m_no_more_plans

bool lldb_private::ThreadPlanStepRange::m_no_more_plans
protected

◆ m_parent_stack_id

StackID lldb_private::ThreadPlanStepRange::m_parent_stack_id
protected

Definition at line 76 of file ThreadPlanStepRange.h.

Referenced by CompareCurrentFrameToStartFrame(), and ThreadPlanStepRange().

◆ m_stack_id

◆ m_stop_others

◆ m_use_fast_step

bool lldb_private::ThreadPlanStepRange::m_use_fast_step
protected

Definition at line 84 of file ThreadPlanStepRange.h.

Referenced by SetNextBranchBreakpoint(), and ThreadPlanStepRange().


The documentation for this class was generated from the following files: