| /NextBSD/contrib/llvm/tools/lldb/source/Target/ |
| HD | StackFrameList.cpp | 379 StackFrameSP frame_sp(new StackFrame (m_thread.shared_from_this(), in GetFramesUpTo() local 387 m_frames.push_back (frame_sp); in GetFramesUpTo() 525 StackFrameSP frame_sp; in GetFrameAtIndex() local 534 frame_sp = m_frames[idx]; in GetFrameAtIndex() 536 if (frame_sp) in GetFrameAtIndex() 537 return frame_sp; in GetFrameAtIndex() 548 frame_sp = m_frames[idx]; in GetFrameAtIndex() 561 …frame_sp.reset (new StackFrame (m_thread.shared_from_this(), idx, idx, cfa, cfa_is_valid, pc, 0, s… in GetFrameAtIndex() 563 … Function *function = frame_sp->GetSymbolContext (eSymbolContextFunction).function; in GetFrameAtIndex() 568 frame_sp->SetSymbolContextScope (&function->GetBlock(false)); in GetFrameAtIndex() [all …]
|
| HD | ExecutionContext.cpp | 67 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() 365 ExecutionContext::SetFrameSP (const lldb::StackFrameSP &frame_sp) in SetFrameSP() argument 367 m_frame_sp = frame_sp; in SetFrameSP() 451 ExecutionContext::SetContext (const lldb::StackFrameSP &frame_sp) in SetContext() argument 453 m_frame_sp = frame_sp; in SetContext() [all …]
|
| HD | Thread.cpp | 253 StackFrameSP frame_sp; in GetStackFrameFromEvent() local 259 … frame_sp = thread_sp->GetStackFrameList()->GetFrameWithStackID (event_data->GetStackID()); in GetStackFrameFromEvent() 262 return frame_sp; in GetStackFrameFromEvent() 375 StackFrameSP frame_sp(GetStackFrameList()->GetFrameAtIndex (frame_idx)); in SetSelectedFrameByIndex() local 376 if (frame_sp) in SetSelectedFrameByIndex() 378 GetStackFrameList()->SetSelectedFrame(frame_sp.get()); in SetSelectedFrameByIndex() 380 BroadcastSelectedFrameChange(frame_sp->GetStackID()); in SetSelectedFrameByIndex() 394 StackFrameSP frame_sp = GetSelectedFrame(); in SetSelectedFrameByIndexNoisily() local 395 if (frame_sp) in SetSelectedFrameByIndexNoisily() 398 SymbolContext frame_sc(frame_sp->GetSymbolContext(eSymbolContextLineEntry)); in SetSelectedFrameByIndexNoisily() [all …]
|
| HD | ThreadPlanStepUntil.cpp | 56 StackFrameSP frame_sp (m_thread.GetStackFrameAtIndex (frame_idx)); in ThreadPlanStepUntil() local 57 if (frame_sp) in ThreadPlanStepUntil() 59 m_step_from_insn = frame_sp->GetStackID().GetPC(); in ThreadPlanStepUntil() 79 m_stack_id = frame_sp->GetStackID(); in ThreadPlanStepUntil()
|
| HD | ThreadPlanStepOverRange.cpp | 241 StackFrameSP frame_sp = m_thread.GetStackFrameAtIndex(0); in ShouldStop() local 242 sc = frame_sp->GetSymbolContext (eSymbolContextEverything); in ShouldStop() 253 Address cur_address = frame_sp->GetFrameCodeAddress(); in ShouldStop()
|
| HD | RegisterContext.cpp | 116 StackFrameSP frame_sp(m_thread.GetFrameWithConcreteFrameIndex (m_concrete_frame_idx)); in SetPC() local 117 if (frame_sp) in SetPC() 118 frame_sp->ChangePC(pc); in SetPC()
|
| /NextBSD/contrib/llvm/tools/lldb/source/API/ |
| HD | SBThread.cpp | 740 StackFrameSP frame_sp(thread->GetStackFrameAtIndex (0)); in StepOver() local 743 if (frame_sp) in StepOver() 745 if (frame_sp->HasDebugInformation ()) in StepOver() 748 SymbolContext sc(frame_sp->GetSymbolContext(eSymbolContextEverything)); in StepOver() 793 StackFrameSP frame_sp(thread->GetStackFrameAtIndex (0)); in StepInto() local 796 if (frame_sp && frame_sp->HasDebugInformation ()) in StepInto() 800 SymbolContext sc(frame_sp->GetSymbolContext(eSymbolContextEverything)); in StepInto() 864 StackFrameSP frame_sp (sb_frame.GetFrameSP()); in StepOutOfFrame() local 871 static_cast<void*>(frame_sp.get()), in StepOutOfFrame() 887 frame_sp->GetFrameIndex())); in StepOutOfFrame() [all …]
|
| HD | SBExecutionContext.cpp | 123 StackFrameSP frame_sp(m_exe_ctx_sp->GetFrameSP()); in GetFrame() local 124 if (frame_sp) in GetFrame() 125 sb_frame.SetFrameSP(frame_sp); in GetFrame()
|
| HD | SBInstruction.cpp | 214 lldb::StackFrameSP frame_sp (frame.GetFrameSP()); in EmulateWithFrame() local 216 if (frame_sp) in EmulateWithFrame() 219 frame_sp->CalculateExecutionContext (exe_ctx); in EmulateWithFrame() 225 (void *) frame_sp.get(), in EmulateWithFrame()
|
| HD | SBBlock.cpp | 275 StackFrameSP frame_sp(frame.GetFrameSP()); in GetVariables() local 309 if (frame_sp) in GetVariables() 311 …lldb::ValueObjectSP valobj_sp(frame_sp->GetValueObjectForFrameVariable (variable_sp,eNoDynamicValu… in GetVariables()
|
| /NextBSD/contrib/llvm/tools/lldb/include/lldb/Expression/ |
| HD | Materializer.h | 61 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…
|
| /NextBSD/contrib/llvm/tools/lldb/source/Expression/ |
| HD | Materializer.cpp | 150 …void Materialize (lldb::StackFrameSP &frame_sp, IRMemoryMap &map, lldb::addr_t process_address, Er… in Materialize() argument 195 void Dematerialize (lldb::StackFrameSP &frame_sp, in Dematerialize() argument 422 …void Materialize (lldb::StackFrameSP &frame_sp, IRMemoryMap &map, lldb::addr_t process_address, Er… in Materialize() argument 434 ExecutionContextScope *scope = frame_sp.get(); in Materialize() 569 void Dematerialize (lldb::StackFrameSP &frame_sp, in Dematerialize() argument 588 ExecutionContextScope *scope = frame_sp.get(); in Dematerialize() 772 …void Materialize (lldb::StackFrameSP &frame_sp, IRMemoryMap &map, lldb::addr_t process_address, Er… in Materialize() argument 813 void Dematerialize (lldb::StackFrameSP &frame_sp, in Dematerialize() argument 824 lldb::StackFrameSP &frame_sp, in Dematerialize() argument 1042 …void Materialize (lldb::StackFrameSP &frame_sp, IRMemoryMap &map, lldb::addr_t process_address, Er… in Materialize() argument [all …]
|
| HD | ClangUserExpression.cpp | 346 lldb::StackFrameSP frame_sp = exe_ctx.GetFrameSP(); in InstallContext() local 348 if (frame_sp) in InstallContext() 349 m_address = frame_sp->GetFrameCodeAddress(); in InstallContext() 356 lldb::StackFrameSP &frame_sp) in LockAndCheckContext() argument 366 frame_sp = exe_ctx.GetFrameSP(); in LockAndCheckContext() 370 if (!frame_sp) in LockAndCheckContext() 373 …return (0 == Address::CompareLoadAddress(m_address, frame_sp->GetFrameCodeAddress(), target_sp.get… in LockAndCheckContext() 384 lldb::StackFrameSP frame_sp; in MatchesContext() local 386 return LockAndCheckContext(exe_ctx, target_sp, process_sp, frame_sp); in MatchesContext() 640 GetObjectPointer (lldb::StackFrameSP frame_sp, in GetObjectPointer() argument [all …]
|
| /NextBSD/contrib/llvm/tools/lldb/source/DataFormatters/ |
| HD | CF.cpp | 80 StackFrameSP frame_sp(valobj.GetFrameSP()); in CFBagSummaryProvider() local 81 if (!frame_sp) in CFBagSummaryProvider() 86 …if (process_sp->GetTarget().EvaluateExpression(expr.GetData(), frame_sp.get(), count_sp) != eExpre… in CFBagSummaryProvider() 274 StackFrameSP frame_sp(valobj.GetFrameSP()); in CFBinaryHeapSummaryProvider() local 275 if (!frame_sp) in CFBinaryHeapSummaryProvider() 280 …if (process_sp->GetTarget().EvaluateExpression(expr.GetData(), frame_sp.get(), count_sp) != eExpre… in CFBinaryHeapSummaryProvider()
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/ |
| HD | MemoryHistoryASan.cpp | 149 StackFrameSP frame_sp = thread_sp->GetSelectedFrame(); in GetHistoryThreads() local 151 if (!frame_sp) in GetHistoryThreads() 156 ExecutionContext exe_ctx (frame_sp); in GetHistoryThreads() 168 …if (m_process_sp->GetTarget().EvaluateExpression(expr.GetData(), frame_sp.get(), return_value_sp, … in GetHistoryThreads()
|
| /NextBSD/contrib/llvm/tools/lldb/include/lldb/Target/ |
| HD | ExecutionContext.h | 236 SetFrameSP (const lldb::StackFrameSP &frame_sp); 396 ExecutionContext (const lldb::StackFrameSP &frame_sp); 652 SetFrameSP (const lldb::StackFrameSP &frame_sp); 720 SetContext (const lldb::StackFrameSP &frame_sp);
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/ |
| HD | AddressSanitizerRuntime.cpp | 168 StackFrameSP frame_sp = thread_sp->GetSelectedFrame(); in RetrieveReportData() local 170 if (!frame_sp) in RetrieveReportData() 181 …et().EvaluateExpression(address_sanitizer_retrieve_report_data_command, frame_sp.get(), return_val… in RetrieveReportData()
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/ |
| HD | ABISysV_arm64.h | 40 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value) override;
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ |
| HD | ABIMacOSX_arm64.h | 116 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value);
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/ |
| HD | ABIMacOSX_arm.h | 40 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value);
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/ |
| HD | ABISysV_i386.h | 47 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value) override;
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ |
| HD | ABISysV_ppc64.h | 44 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value);
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/ |
| HD | ABISysV_x86_64.h | 44 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value);
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ |
| HD | ABISysV_arm.h | 40 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value) override;
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ |
| HD | ABISysV_mips.h | 44 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value);
|