Home
last modified time | relevance | path

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

1234

/llvm-project-15.0.7/lldb/source/Target/
H A DStackFrameList.cpp660 if (frame_sp) in GetFrameAtIndex()
661 return frame_sp; in GetFrameAtIndex()
711 return frame_sp; in GetFrameAtIndex()
724 while (frame_sp) { in GetFrameWithConcreteFrameIndex()
729 return frame_sp; in GetFrameWithConcreteFrameIndex()
756 if (frame_sp && frame_sp->GetStackID() == stack_id) in GetFrameWithStackID()
759 } while (frame_sp); in GetFrameWithStackID()
761 return frame_sp; in GetFrameWithStackID()
802 if (frame_sp) { in SetSelectedFrameByIndex()
813 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()
257 m_frame_sp = frame_sp; in SetFrameSP()
325 m_frame_sp = frame_sp; in SetContext()
326 if (frame_sp) { in SetContext()
441 if (frame_sp) in operator =()
484 if (frame_sp) { in SetFrameSP()
521 if (!frame_sp) in SetTargetPtr()
[all …]
H A DThread.cpp208 return frame_sp; in GetStackFrameFromEvent()
270 return frame_sp; in GetSelectedFrame()
284 if (frame_sp) { in SetSelectedFrameByIndex()
300 if (frame_sp) { in SetSelectedFrameByIndexNoisily()
481 if (frame_sp) { in CheckpointThreadState()
508 if (frame_sp) { in RestoreRegisterStateFromCheckpoint()
551 if (!frame_sp) in GetStopDescription()
1439 if (!frame_sp) { in ReturnFromFrameWithIndex()
1453 if (!frame_sp) { in ReturnFromFrame()
1605 if (frame_sp) { in DumpUsingSettingsFormat()
[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.cpp117 StackFrameSP frame_sp( in SetPC() local
119 if (frame_sp) in SetPC()
120 frame_sp->ChangePC(pc); in SetPC()
/llvm-project-15.0.7/lldb/source/Expression/
H A DUserExpression.cpp62 lldb::StackFrameSP frame_sp = exe_ctx.GetFrameSP(); in InstallContext() local
64 if (frame_sp) in InstallContext()
65 m_address = frame_sp->GetFrameCodeAddress(); in InstallContext()
71 lldb::StackFrameSP &frame_sp) { in LockAndCheckContext() argument
80 frame_sp = exe_ctx.GetFrameSP(); in LockAndCheckContext()
83 if (!frame_sp) in LockAndCheckContext()
86 frame_sp->GetFrameCodeAddress(), in LockAndCheckContext()
96 lldb::StackFrameSP frame_sp; in MatchesContext() local
98 return LockAndCheckContext(exe_ctx, target_sp, process_sp, frame_sp); in MatchesContext()
105 if (!frame_sp) { in GetObjectPointerValueObject()
[all …]
H A DMaterializer.cpp451 ExecutionContextScope *scope = frame_sp.get(); in Materialize()
615 ExecutionContextScope *scope = frame_sp.get(); in Dematerialize()
933 ExecutionContextScope *exe_scope = frame_sp.get(); in Materialize()
987 ExecutionContextScope *exe_scope = frame_sp.get(); in Dematerialize()
1215 ExecutionContextScope *exe_scope = frame_sp.get(); in Materialize()
1334 if (!frame_sp.get()) { in Materialize()
1399 if (!frame_sp.get()) { in Dematerialize()
1496 ExecutionContextScope *exe_scope = frame_sp.get(); in Materialize()
1540 lldb::StackFrameSP frame_sp; in Dematerialize() local
1544 frame_sp = thread_sp->GetFrameWithStackID(m_stack_id); in Dematerialize()
[all …]
/llvm-project-15.0.7/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,
119 virtual void Materialize(lldb::StackFrameSP &frame_sp, IRMemoryMap &map,
121 virtual void Dematerialize(lldb::StackFrameSP &frame_sp, IRMemoryMap &map,
H A DUserExpression.h280 static lldb::addr_t GetObjectPointer(lldb::StackFrameSP frame_sp,
307 lldb::StackFrameSP &frame_sp);
/llvm-project-15.0.7/lldb/source/API/
H A DSBThread.cpp550 if (frame_sp) { in StepOver()
598 if (frame_sp && frame_sp->HasDebugInformation()) { in StepInto()
791 if (!frame_sp) { in StepOverUntil()
793 if (!frame_sp) in StepOverUntil()
798 if (!frame_sp) { in StepOverUntil()
1110 StackFrameSP frame_sp; in GetFrameAtIndex() local
1118 sb_frame.SetFrameSP(frame_sp); in GetFrameAtIndex()
1129 StackFrameSP frame_sp; in GetSelectedFrame() local
1137 sb_frame.SetFrameSP(frame_sp); in GetSelectedFrame()
1148 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.cpp290 lldb::StackFrameSP frame_sp(frame.GetFrameSP()); in EmulateWithFrame() local
292 if (frame_sp) { in EmulateWithFrame()
294 frame_sp->CalculateExecutionContext(exe_ctx); in EmulateWithFrame()
299 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()
/llvm-project-15.0.7/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;
/llvm-project-15.0.7/lldb/source/Plugins/MemoryHistory/asan/
H A DMemoryHistoryASan.cpp159 StackFrameSP frame_sp = thread_sp->GetSelectedFrame(); in GetHistoryThreads() local
160 if (!frame_sp) in GetHistoryThreads()
163 ExecutionContext exe_ctx(frame_sp); in GetHistoryThreads()
/llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DInstrumentationRuntimeASan.cpp116 StackFrameSP frame_sp = thread_sp->GetSelectedFrame(); in RetrieveReportData() local
118 if (!frame_sp) in RetrieveReportData()
134 frame_sp->CalculateExecutionContext(exe_ctx); in RetrieveReportData()
/llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp84 StackFrameSP frame_sp = thread_sp->GetSelectedFrame(); in RetrieveReportData() local
88 if (!frame_sp) in RetrieveReportData()
91 RegisterContextSP regctx_sp = frame_sp->GetRegisterContext(); in RetrieveReportData()
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangUserExpression.cpp876 lldb::StackFrameSP frame_sp, ConstString &object_name, Status &err) { in GetCppObjectPointer() argument
878 GetObjectPointerValueObject(std::move(frame_sp), object_name, err); in GetCppObjectPointer()
911 lldb::StackFrameSP frame_sp = exe_ctx.GetFrameSP(); in AddArguments() local
912 if (!frame_sp) in AddArguments()
940 GetCppObjectPointer(frame_sp, object_name, object_ptr_error); in AddArguments()
942 object_ptr = GetObjectPointer(frame_sp, object_name, object_ptr_error); in AddArguments()
956 cmd_ptr = GetObjectPointer(frame_sp, cmd_name, object_ptr_error); in AddArguments()
/llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp112 StackFrameSP frame_sp = thread_sp->GetSelectedFrame(); in RetrieveReportData() local
116 if (!frame_sp) in RetrieveReportData()
134 frame_sp->CalculateExecutionContext(exe_ctx); in RetrieveReportData()
/llvm-project-15.0.7/lldb/bindings/python/
H A Dpython-swigsafecast.swig75 PythonObject ToSWIGWrapper(lldb::StackFrameSP frame_sp) {
76 return ToSWIGHelper(new lldb::SBFrame(std::move(frame_sp)),
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectFrame.cpp137 StackFrameSP frame_sp = thread->GetSelectedFrame(); in DoExecute() local
147 valobj_sp = frame_sp->GuessValueForAddress(m_options.address.value()); in DoExecute()
149 valobj_sp = frame_sp->GuessValueForRegisterAndOffset( in DoExecute()
1101 StackFrameSP frame_sp = thread->GetStackFrameAtIndex(frame_index); in DoExecute() local
1102 if (!frame_sp) { in DoExecute()
1109 .GetRecognizerForFrame(frame_sp); in DoExecute()
H A DCommandObjectThreadUtil.cpp150 const lldb::StackFrameSP frame_sp = in BucketThread() local
152 const lldb::addr_t pc = frame_sp->GetStackID().GetPC(); in BucketThread()

1234