LLDB mainline
lldb_private::ScriptedThreadPlan Class Reference

#include <ScriptedThreadPlan.h>

Inheritance diagram for lldb_private::ScriptedThreadPlan:
[legend]

Public Member Functions

 ScriptedThreadPlan (Thread &thread, const char *class_name, const StructuredDataImpl &args_data)
void GetDescription (Stream *s, lldb::DescriptionLevel level) override
 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
bool MischiefManaged () override
bool WillStop () override
bool StopOthers () override
void SetStopOthers (bool new_value) override
void DidPush () override
bool IsPlanStale () override
bool DoWillResume (lldb::StateType resume_state, bool current_plan) override
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.
virtual Vote ShouldReportStop (Event *event_ptr)
Vote ShouldReportRun (Event *event_ptr)
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 DoPlanExplainsStop (Event *event_ptr) override
lldb::StateType GetPlanRunState () override
ScriptInterpreterGetScriptInterpreter ()
Protected Member Functions inherited from lldb_private::ThreadPlan
 ThreadPlan (ThreadPlanKind kind, const char *name, Thread &thread, Vote report_stop_vote, Vote report_run_vote)
void PushPlan (lldb::ThreadPlanSP &thread_plan_sp)
ThreadPlanGetPreviousPlan ()
lldb::StopInfoSP GetPrivateStopInfo ()
void SetStopInfo (lldb::StopInfoSP stop_reason_sp)
bool IsUsuallyUnexplainedStopReason (lldb::StopReason)

Private Member Functions

 ScriptedThreadPlan (const ScriptedThreadPlan &)=delete
const ScriptedThreadPlanoperator= (const ScriptedThreadPlan &)=delete

Private Attributes

std::string m_class_name
StructuredDataImpl m_args_data
std::string m_error_str
StructuredData::ObjectSP m_implementation_sp
StreamString m_stop_description
bool m_did_push
bool m_stop_others
lldb::ScriptedThreadPlanInterfaceSP m_interface

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
}
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.

Detailed Description

Definition at line 29 of file ScriptedThreadPlan.h.

Constructor & Destructor Documentation

◆ ScriptedThreadPlan() [1/2]

◆ ScriptedThreadPlan() [2/2]

lldb_private::ScriptedThreadPlan::ScriptedThreadPlan ( const ScriptedThreadPlan & )
privatedelete

References ScriptedThreadPlan().

Member Function Documentation

◆ DidPush()

void ScriptedThreadPlan::DidPush ( )
overridevirtual

◆ DoPlanExplainsStop()

bool ScriptedThreadPlan::DoPlanExplainsStop ( Event * event_ptr)
overrideprotectedvirtual

◆ DoWillResume()

bool ScriptedThreadPlan::DoWillResume ( lldb::StateType resume_state,
bool current_plan )
overridevirtual

Reimplemented from lldb_private::ThreadPlan.

Definition at line 213 of file ScriptedThreadPlan.cpp.

References m_stop_description.

◆ GetDescription()

void ScriptedThreadPlan::GetDescription ( Stream * s,
lldb::DescriptionLevel level )
overridevirtual

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.

Definition at line 175 of file ScriptedThreadPlan.cpp.

References lldb_private::StreamString::GetData(), lldb_private::GetLog(), GetScriptInterpreter(), LLDB_LOG_ERROR, LLDB_LOGF, m_class_name, m_implementation_sp, m_interface, m_stop_description, lldb_private::Stream::Printf(), lldb_private::Stream::PutCString(), and lldb_private::Thread.

Referenced by MischiefManaged().

◆ GetPlanRunState()

lldb::StateType ScriptedThreadPlan::GetPlanRunState ( )
overrideprotectedvirtual

◆ GetScriptInterpreter()

ScriptInterpreter * ScriptedThreadPlan::GetScriptInterpreter ( )
protected

Definition at line 73 of file ScriptedThreadPlan.cpp.

References lldb_private::ThreadPlan::m_process.

Referenced by GetDescription(), and ScriptedThreadPlan().

◆ IsPlanStale()

bool ScriptedThreadPlan::IsPlanStale ( )
overridevirtual

◆ MischiefManaged()

◆ operator=()

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

References ScriptedThreadPlan().

◆ SetStopOthers()

void lldb_private::ScriptedThreadPlan::SetStopOthers ( bool new_value)
inlineoverridevirtual

Reimplemented from lldb_private::ThreadPlan.

Definition at line 46 of file ScriptedThreadPlan.h.

References m_stop_others.

◆ ShouldStop()

bool ScriptedThreadPlan::ShouldStop ( Event * event_ptr)
overridevirtual

◆ StopOthers()

bool lldb_private::ScriptedThreadPlan::StopOthers ( )
inlineoverridevirtual

Reimplemented from lldb_private::ThreadPlan.

Definition at line 44 of file ScriptedThreadPlan.h.

References m_stop_others.

◆ ValidatePlan()

bool ScriptedThreadPlan::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 ScriptedThreadPlan.cpp.

References error(), m_did_push, m_error_str, and m_implementation_sp.

◆ WillStop()

bool ScriptedThreadPlan::WillStop ( )
overridevirtual

Member Data Documentation

◆ m_args_data

StructuredDataImpl lldb_private::ScriptedThreadPlan::m_args_data
private

Definition at line 63 of file ScriptedThreadPlan.h.

Referenced by DidPush(), and ScriptedThreadPlan().

◆ m_class_name

std::string lldb_private::ScriptedThreadPlan::m_class_name
private

◆ m_did_push

bool lldb_private::ScriptedThreadPlan::m_did_push
private

Definition at line 67 of file ScriptedThreadPlan.h.

Referenced by DidPush(), ScriptedThreadPlan(), and ValidatePlan().

◆ m_error_str

std::string lldb_private::ScriptedThreadPlan::m_error_str
private

Definition at line 64 of file ScriptedThreadPlan.h.

Referenced by DidPush(), and ValidatePlan().

◆ m_implementation_sp

StructuredData::ObjectSP lldb_private::ScriptedThreadPlan::m_implementation_sp
private

◆ m_interface

lldb::ScriptedThreadPlanInterfaceSP lldb_private::ScriptedThreadPlan::m_interface
private

◆ m_stop_description

StreamString lldb_private::ScriptedThreadPlan::m_stop_description
private

Definition at line 66 of file ScriptedThreadPlan.h.

Referenced by DoWillResume(), GetDescription(), and MischiefManaged().

◆ m_stop_others

bool lldb_private::ScriptedThreadPlan::m_stop_others
private

Definition at line 68 of file ScriptedThreadPlan.h.

Referenced by ScriptedThreadPlan(), SetStopOthers(), and StopOthers().


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