Home
last modified time | relevance | path

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

12

/external/lldb/source/Target/
DStackFrameList.cpp361 StackFrameSP frame_sp(new StackFrame (m_thread.shared_from_this(), in GetFramesUpTo() local
369 m_frames.push_back (frame_sp); in GetFramesUpTo()
504 StackFrameSP frame_sp; in GetFrameAtIndex() local
513 frame_sp = m_frames[idx]; in GetFrameAtIndex()
515 if (frame_sp) in GetFrameAtIndex()
516 return frame_sp; in GetFrameAtIndex()
527 frame_sp = m_frames[idx]; in GetFrameAtIndex()
537frame_sp.reset (new StackFrame (m_thread.shared_from_this(), idx, idx, cfa, pc, NULL)); in GetFrameAtIndex()
539 … Function *function = frame_sp->GetSymbolContext (eSymbolContextFunction).function; in GetFrameAtIndex()
544 frame_sp->SetSymbolContextScope (&function->GetBlock(false)); in GetFrameAtIndex()
[all …]
DExecutionContext.cpp67 ExecutionContext::ExecutionContext (const lldb::StackFrameSP &frame_sp) : in ExecutionContext() argument
73 if (frame_sp) in ExecutionContext()
74 SetContext (frame_sp); in ExecutionContext()
116 lldb::StackFrameSP frame_sp(frame_wp.lock()); in ExecutionContext() local
117 if (frame_sp) in ExecutionContext()
118 SetContext (frame_sp); in ExecutionContext()
343 ExecutionContext::SetFrameSP (const lldb::StackFrameSP &frame_sp) in SetFrameSP() argument
345 m_frame_sp = frame_sp; in SetFrameSP()
429 ExecutionContext::SetContext (const lldb::StackFrameSP &frame_sp) in SetContext() argument
431 m_frame_sp = frame_sp; in SetContext()
[all …]
DThread.cpp218 StackFrameSP frame_sp; in GetStackFrameFromEvent() local
224frame_sp = thread_sp->GetStackFrameList()->GetFrameWithStackID (event_data->GetStackID()); in GetStackFrameFromEvent()
227 return frame_sp; in GetStackFrameFromEvent()
329 StackFrameSP frame_sp(GetStackFrameList()->GetFrameAtIndex (frame_idx)); in SetSelectedFrameByIndex() local
330 if (frame_sp) in SetSelectedFrameByIndex()
332 GetStackFrameList()->SetSelectedFrame(frame_sp.get()); in SetSelectedFrameByIndex()
334 BroadcastSelectedFrameChange(frame_sp->GetStackID()); in SetSelectedFrameByIndex()
348 StackFrameSP frame_sp = GetSelectedFrame(); in SetSelectedFrameByIndexNoisily() local
349 if (frame_sp) in SetSelectedFrameByIndexNoisily()
352 SymbolContext frame_sc(frame_sp->GetSymbolContext(eSymbolContextLineEntry)); in SetSelectedFrameByIndexNoisily()
[all …]
DThreadPlanStepOverRange.cpp191 StackFrameSP frame_sp = m_thread.GetStackFrameAtIndex(0); in ShouldStop() local
192 sc = frame_sp->GetSymbolContext (eSymbolContextEverything); in ShouldStop()
203 Address cur_address = frame_sp->GetFrameCodeAddress(); in ShouldStop()
DThreadPlanStepUntil.cpp57 StackFrameSP frame_sp (m_thread.GetStackFrameAtIndex (frame_idx)); in ThreadPlanStepUntil() local
58 if (frame_sp) in ThreadPlanStepUntil()
60 m_step_from_insn = frame_sp->GetStackID().GetPC(); in ThreadPlanStepUntil()
DRegisterContext.cpp107 StackFrameSP frame_sp(m_thread.GetFrameWithConcreteFrameIndex (m_concrete_frame_idx)); in SetPC() local
108 if (frame_sp) in SetPC()
109 frame_sp->ChangePC(pc); in SetPC()
/external/lldb/source/API/
DSBThread.cpp569 StackFrameSP frame_sp(thread->GetStackFrameAtIndex (0)); in StepOver() local
572 if (frame_sp) in StepOver()
574 if (frame_sp->HasDebugInformation ()) in StepOver()
576 SymbolContext sc(frame_sp->GetSymbolContext(eSymbolContextEverything)); in StepOver()
620 StackFrameSP frame_sp(thread->GetStackFrameAtIndex (0)); in StepInto() local
623 if (frame_sp && frame_sp->HasDebugInformation ()) in StepInto()
626 SymbolContext sc(frame_sp->GetSymbolContext(eSymbolContextEverything)); in StepInto()
686 StackFrameSP frame_sp (sb_frame.GetFrameSP()); in StepOutOfFrame() local
691 …%p)::StepOutOfFrame (frame = SBFrame(%p): %s)", exe_ctx.GetThreadPtr(), frame_sp.get(), frame_desc… in StepOutOfFrame()
706 frame_sp->GetFrameIndex())); in StepOutOfFrame()
[all …]
DSBInstruction.cpp199 lldb::StackFrameSP frame_sp (frame.GetFrameSP()); in EmulateWithFrame() local
201 if (frame_sp) in EmulateWithFrame()
204 frame_sp->CalculateExecutionContext (exe_ctx); in EmulateWithFrame()
210 (void *) frame_sp.get(), in EmulateWithFrame()
DSBBlock.cpp267 StackFrameSP frame_sp(frame.GetFrameSP()); in GetVariables() local
301 if (frame_sp) in GetVariables()
303 …lldb::ValueObjectSP valobj_sp(frame_sp->GetValueObjectForFrameVariable (variable_sp,eNoDynamicValu… in GetVariables()
DSBValue.cpp1257 StackFrameSP frame_sp; in GetFrame() local
1260 frame_sp = m_opaque_sp->GetFrameSP(); in GetFrame()
1261 sb_frame.SetFrameSP (frame_sp); in GetFrame()
1266 if (frame_sp.get() == NULL) in GetFrame()
1269 log->Printf ("SBValue(%p)::GetFrame () => %p", m_opaque_sp.get(), frame_sp.get()); in GetFrame()
/external/lldb/include/lldb/Expression/
DMaterializer.h61 lldb::StackFrameSP &frame_sp, in Dematerializer() argument
68 if (frame_sp) in Dematerializer()
70 m_thread_wp = frame_sp->GetThread(); in Dematerializer()
71 m_stack_id = frame_sp->GetStackID(); in Dematerializer()
85 …DematerializerSP Materialize (lldb::StackFrameSP &frame_sp, IRMemoryMap &map, lldb::addr_t process…
125 …virtual void Materialize (lldb::StackFrameSP &frame_sp, IRMemoryMap &map, lldb::addr_t process_add…
126 …virtual void Dematerialize (lldb::StackFrameSP &frame_sp, IRMemoryMap &map, lldb::addr_t process_a…
DClangUserExpression.h397 lldb::StackFrameSP &frame_sp);
/external/lldb/source/Expression/
DMaterializer.cpp149 …void Materialize (lldb::StackFrameSP &frame_sp, IRMemoryMap &map, lldb::addr_t process_address, Er… in Materialize() argument
194 void Dematerialize (lldb::StackFrameSP &frame_sp, in Dematerialize() argument
421 …void Materialize (lldb::StackFrameSP &frame_sp, IRMemoryMap &map, lldb::addr_t process_address, Er… in Materialize() argument
433 ExecutionContextScope *scope = frame_sp.get(); in Materialize()
542 void Dematerialize (lldb::StackFrameSP &frame_sp, in Dematerialize() argument
561 ExecutionContextScope *scope = frame_sp.get(); in Dematerialize()
729 …void Materialize (lldb::StackFrameSP &frame_sp, IRMemoryMap &map, lldb::addr_t process_address, Er… in Materialize() argument
767 void Dematerialize (lldb::StackFrameSP &frame_sp, in Dematerialize() argument
778 lldb::StackFrameSP &frame_sp, in Dematerialize() argument
996 …void Materialize (lldb::StackFrameSP &frame_sp, IRMemoryMap &map, lldb::addr_t process_address, Er… in Materialize() argument
[all …]
DClangUserExpression.cpp338 lldb::StackFrameSP frame_sp = exe_ctx.GetFrameSP(); in InstallContext() local
340 if (frame_sp) in InstallContext()
341 m_address = frame_sp->GetFrameCodeAddress(); in InstallContext()
348 lldb::StackFrameSP &frame_sp) in LockAndCheckContext() argument
358 frame_sp = exe_ctx.GetFrameSP(); in LockAndCheckContext()
362 if (!frame_sp) in LockAndCheckContext()
365 …return (0 == Address::CompareLoadAddress(m_address, frame_sp->GetFrameCodeAddress(), target_sp.get… in LockAndCheckContext()
376 lldb::StackFrameSP frame_sp; in MatchesContext() local
378 return LockAndCheckContext(exe_ctx, target_sp, process_sp, frame_sp); in MatchesContext()
562 GetObjectPointer (lldb::StackFrameSP frame_sp, in GetObjectPointer() argument
[all …]
/external/lldb/source/DataFormatters/
DCF.cpp82 StackFrameSP frame_sp(valobj.GetFrameSP()); in CFBagSummaryProvider() local
83 if (!frame_sp) in CFBagSummaryProvider()
88 …if (process_sp->GetTarget().EvaluateExpression(expr.GetData(), frame_sp.get(), count_sp) != eExecu… in CFBagSummaryProvider()
276 StackFrameSP frame_sp(valobj.GetFrameSP()); in CFBinaryHeapSummaryProvider() local
277 if (!frame_sp) in CFBinaryHeapSummaryProvider()
282 …if (process_sp->GetTarget().EvaluateExpression(expr.GetData(), frame_sp.get(), count_sp) != eExecu… in CFBinaryHeapSummaryProvider()
/external/lldb/include/lldb/Target/
DExecutionContext.h236 SetFrameSP (const lldb::StackFrameSP &frame_sp);
396 ExecutionContext (const lldb::StackFrameSP &frame_sp);
649 SetFrameSP (const lldb::StackFrameSP &frame_sp);
717 SetContext (const lldb::StackFrameSP &frame_sp);
DStackFrameList.h98 SetFrameAtIndex (uint32_t idx, lldb::StackFrameSP &frame_sp);
DABI.h56 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value) = 0;
/external/lldb/source/Plugins/ABI/SysV-x86_64/
DABISysV_x86_64.h49 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value);
/external/lldb/source/Plugins/ABI/MacOSX-i386/
DABIMacOSX_i386.h55 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value);
/external/lldb/source/Plugins/ABI/MacOSX-arm/
DABIMacOSX_arm.h45 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value);
/external/lldb/include/lldb/Interpreter/
DScriptInterpreter.h89 const lldb::StackFrameSP& frame_sp,
94 const lldb::StackFrameSP& frame_sp,
/external/lldb/source/Commands/
DCommandObjectThread.cpp1405 StackFrameSP frame_sp = m_exe_ctx.GetFrameSP(); in DoExecute() local
1406 uint32_t frame_idx = frame_sp->GetFrameIndex(); in DoExecute()
1408 if (frame_sp->IsInlined()) in DoExecute()
1425 frame_sp.get(), in DoExecute()
1443 error = thread_sp->ReturnFromFrame (frame_sp, return_valobj_sp, broadcast); in DoExecute()
/external/lldb/scripts/Python/
Dpython-wrapper.swig214 const lldb::StackFrameSP& frame_sp,
218 lldb::SBFrame sb_frame (frame_sp);
254 const lldb::StackFrameSP& frame_sp,
258 lldb::SBFrame sb_frame (frame_sp);
/external/lldb/source/Core/
DValueObject.cpp3917 StackFrameSP frame_sp (exe_ctx.GetFrameSP()); in EvaluationPoint() local
3918 if (!frame_sp) in EvaluationPoint()
3921 frame_sp = thread_sp->GetSelectedFrame(); in EvaluationPoint()
3923 if (frame_sp) in EvaluationPoint()
3924 m_exe_ctx_ref.SetFrameSP(frame_sp); in EvaluationPoint()
4001 StackFrameSP frame_sp (m_exe_ctx_ref.GetFrameSP()); in SyncWithProcessState() local
4002 if (!frame_sp) in SyncWithProcessState()

12