Home
last modified time | relevance | path

Searched refs:frame_sp (Results 1 – 25 of 83) sorted by relevance

1234

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStackFrameList.cpp680 if (frame_sp) in GetFrameAtIndex()
681 return frame_sp; in GetFrameAtIndex()
737 return frame_sp; in GetFrameAtIndex()
750 while (frame_sp) { in GetFrameWithConcreteFrameIndex()
755 return frame_sp; in GetFrameWithConcreteFrameIndex()
782 if (frame_sp && frame_sp->GetStackID() == stack_id) in GetFrameWithStackID()
787 return frame_sp; in GetFrameWithStackID()
812 if (!frame_sp) { in SelectMostRelevantFrame()
873 if (frame_sp) { in SetSelectedFrameByIndex()
885 if (frame_sp) { in SetDefaultFileAndLineToSelectedFrame()
[all …]
H A DExecutionContext.cpp45 if (frame_sp) in ExecutionContext()
46 SetContext(frame_sp); in ExecutionContext()
74 if (frame_sp) in ExecutionContext()
75 SetContext(frame_sp); in ExecutionContext()
258 m_frame_sp = frame_sp; in SetFrameSP()
326 m_frame_sp = frame_sp; in SetContext()
327 if (frame_sp) { in SetContext()
442 if (frame_sp) in operator =()
485 if (frame_sp) { in SetFrameSP()
523 if (!frame_sp) in SetTargetPtr()
[all …]
H A DThread.cpp203 return frame_sp; in GetStackFrameFromEvent()
269 return frame_sp; in GetSelectedFrame()
283 if (frame_sp) { in SetSelectedFrameByIndex()
299 if (frame_sp) { in SetSelectedFrameByIndexNoisily()
496 if (frame_sp) { in CheckpointThreadState()
523 if (frame_sp) { in RestoreRegisterStateFromCheckpoint()
566 if (!frame_sp) in GetStopDescription()
1439 if (!frame_sp) { in ReturnFromFrameWithIndex()
1453 if (!frame_sp) { in ReturnFromFrame()
1606 if (frame_sp) { in DumpUsingFormat()
[all …]
H A DThreadPlanStepUntil.cpp40 StackFrameSP frame_sp(thread.GetStackFrameAtIndex(frame_idx)); in ThreadPlanStepUntil() local
41 if (frame_sp) { in ThreadPlanStepUntil()
42 m_step_from_insn = frame_sp->GetStackID().GetPC(); in ThreadPlanStepUntil()
63 m_stack_id = frame_sp->GetStackID(); in ThreadPlanStepUntil()
H A DThreadPlanStepOverRange.cpp220 StackFrameSP frame_sp = thread.GetStackFrameAtIndex(0); in ShouldStop() local
221 sc = frame_sp->GetSymbolContext(eSymbolContextEverything); in ShouldStop()
230 Address cur_address = frame_sp->GetFrameCodeAddress(); in ShouldStop()
H A DAssertFrameRecognizer.cpp132 AssertFrameRecognizer::RecognizeFrame(lldb::StackFrameSP frame_sp) { in RecognizeFrame() argument
133 ThreadSP thread_sp = frame_sp->GetThread(); in RecognizeFrame()
H A DRegisterContext.cpp123 StackFrameSP frame_sp( in SetPC() local
125 if (frame_sp) in SetPC()
126 frame_sp->ChangePC(pc); in SetPC()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DUserExpression.cpp61 lldb::StackFrameSP frame_sp = exe_ctx.GetFrameSP(); in InstallContext() local
63 if (frame_sp) in InstallContext()
64 m_address = frame_sp->GetFrameCodeAddress(); in InstallContext()
70 lldb::StackFrameSP &frame_sp) { in LockAndCheckContext() argument
79 frame_sp = exe_ctx.GetFrameSP(); in LockAndCheckContext()
82 if (!frame_sp) in LockAndCheckContext()
85 frame_sp->GetFrameCodeAddress(), in LockAndCheckContext()
95 lldb::StackFrameSP frame_sp; in MatchesContext() local
97 return LockAndCheckContext(exe_ctx, target_sp, process_sp, frame_sp); in MatchesContext()
104 if (!frame_sp) { in GetObjectPointerValueObject()
[all …]
H A DMaterializer.cpp452 ExecutionContextScope *scope = frame_sp.get(); in Materialize()
616 ExecutionContextScope *scope = frame_sp.get(); in Dematerialize()
934 ExecutionContextScope *exe_scope = frame_sp.get(); in Materialize()
988 ExecutionContextScope *exe_scope = frame_sp.get(); in Dematerialize()
1223 ExecutionContextScope *exe_scope = frame_sp.get(); in Materialize()
1342 if (!frame_sp.get()) { in Materialize()
1407 if (!frame_sp.get()) { in Dematerialize()
1504 ExecutionContextScope *exe_scope = frame_sp.get(); in Materialize()
1548 lldb::StackFrameSP frame_sp; in Dematerialize() local
1552 frame_sp = thread_sp->GetFrameWithStackID(m_stack_id); in Dematerialize()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DMaterializer.h47 Dematerializer(Materializer &materializer, lldb::StackFrameSP &frame_sp, in Dematerializer() argument
51 if (frame_sp) { in Dematerializer()
52 m_thread_wp = frame_sp->GetThread(); in Dematerializer()
53 m_stack_id = frame_sp->GetStackID(); in Dematerializer()
67 DematerializerSP Materialize(lldb::StackFrameSP &frame_sp, IRMemoryMap &map,
120 virtual void Materialize(lldb::StackFrameSP &frame_sp, IRMemoryMap &map,
122 virtual void Dematerialize(lldb::StackFrameSP &frame_sp, IRMemoryMap &map,
H A DUserExpression.h288 static lldb::addr_t GetObjectPointer(lldb::StackFrameSP frame_sp,
316 lldb::StackFrameSP &frame_sp);
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBThread.cpp548 if (frame_sp) { in StepOver()
596 if (frame_sp && frame_sp->HasDebugInformation()) { in StepInto()
789 if (!frame_sp) { in StepOverUntil()
795 if (!frame_sp) in StepOverUntil()
800 if (!frame_sp) { in StepOverUntil()
1106 StackFrameSP frame_sp; in GetFrameAtIndex() local
1114 sb_frame.SetFrameSP(frame_sp); in GetFrameAtIndex()
1125 StackFrameSP frame_sp; in GetSelectedFrame() local
1132 frame_sp = in GetSelectedFrame()
1145 StackFrameSP frame_sp; in SetSelectedFrame() local
[all …]
H A DSBExecutionContext.cpp118 StackFrameSP frame_sp(m_exe_ctx_sp->GetFrameSP()); in GetFrame() local
119 if (frame_sp) in GetFrame()
120 sb_frame.SetFrameSP(frame_sp); in GetFrame()
H A DSBInstruction.cpp309 lldb::StackFrameSP frame_sp(frame.GetFrameSP()); in EmulateWithFrame() local
311 if (frame_sp) { in EmulateWithFrame()
313 frame_sp->CalculateExecutionContext(exe_ctx); in EmulateWithFrame()
318 arch, evaluate_options, (void *)frame_sp.get(), in EmulateWithFrame()
H A DSBBlock.cpp240 StackFrameSP frame_sp(frame.GetFrameSP()); in GetVariables() local
269 if (frame_sp) { in GetVariables()
271 frame_sp->GetValueObjectForFrameVariable(variable_sp, in GetVariables()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DExecutionContext.h197 void SetFrameSP(const lldb::StackFrameSP &frame_sp);
307 ExecutionContext(const lldb::StackFrameSP &frame_sp);
481 void SetFrameSP(const lldb::StackFrameSP &frame_sp);
523 void SetContext(const lldb::StackFrameSP &frame_sp);
H A DAssertFrameRecognizer.h49 RecognizeFrame(lldb::StackFrameSP frame_sp) override;
/freebsd/contrib/llvm-project/lldb/source/Plugins/MemoryHistory/asan/
H A DMemoryHistoryASan.cpp157 StackFrameSP frame_sp = in GetHistoryThreads() local
159 if (!frame_sp) in GetHistoryThreads()
162 ExecutionContext exe_ctx(frame_sp); in GetHistoryThreads()
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/Utility/
H A DReportRetriever.cpp69 StackFrameSP frame_sp = in RetrieveReportData() local
72 if (!frame_sp) in RetrieveReportData()
88 frame_sp->CalculateExecutionContext(exe_ctx); in RetrieveReportData()
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp84 StackFrameSP frame_sp = in RetrieveReportData() local
89 if (!frame_sp) in RetrieveReportData()
92 RegisterContextSP regctx_sp = frame_sp->GetRegisterContext(); in RetrieveReportData()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangUserExpression.cpp875 lldb::StackFrameSP frame_sp, llvm::StringRef object_name, Status &err) { in GetCppObjectPointer() argument
877 GetObjectPointerValueObject(std::move(frame_sp), object_name, err); in GetCppObjectPointer()
909 lldb::StackFrameSP frame_sp = exe_ctx.GetFrameSP(); in AddArguments() local
910 if (!frame_sp) in AddArguments()
937 GetCppObjectPointer(frame_sp, object_name, object_ptr_error); in AddArguments()
939 object_ptr = GetObjectPointer(frame_sp, object_name, object_ptr_error); in AddArguments()
953 cmd_ptr = GetObjectPointer(frame_sp, cmd_name, object_ptr_error); in AddArguments()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectFrame.cpp138 StackFrameSP frame_sp = thread->GetSelectedFrame(SelectMostRelevantFrame); in DoExecute() local
148 valobj_sp = frame_sp->GuessValueForAddress(*m_options.address); in DoExecute()
150 valobj_sp = frame_sp->GuessValueForRegisterAndOffset( in DoExecute()
331 StackFrameSP frame_sp = thread->GetStackFrameAtIndex(frame_requested); in DoExecute() local
332 if (frame_sp) in DoExecute()
1127 StackFrameSP frame_sp = thread->GetStackFrameAtIndex(frame_index); in DoExecute() local
1128 if (!frame_sp) { in DoExecute()
1135 .GetRecognizerForFrame(frame_sp); in DoExecute()
H A DCommandObjectThreadUtil.cpp149 const lldb::StackFrameSP frame_sp = in BucketThread() local
151 const lldb::addr_t pc = frame_sp->GetStackID().GetPC(); in BucketThread()
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp111 StackFrameSP frame_sp = in RetrieveReportData() local
116 if (!frame_sp) in RetrieveReportData()
134 frame_sp->CalculateExecutionContext(exe_ctx); in RetrieveReportData()
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-swigsafecast.swig57 PythonObject SWIGBridge::ToSWIGWrapper(lldb::StackFrameSP frame_sp) {
58 return ToSWIGHelper(new lldb::SBFrame(std::move(frame_sp)),

1234