reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Target/StackFrame.h
  129   StackID &GetStackID();

References

tools/lldb/include/lldb/Expression/Materializer.h
   55         m_stack_id = frame_sp->GetStackID();
tools/lldb/source/API/SBFrame.cpp
  322     return frame->GetStackID().GetCallFrameAddress();
  699   return (this_sp && that_sp && this_sp->GetStackID() == that_sp->GetStackID());
  699   return (this_sp && that_sp && this_sp->GetStackID() == that_sp->GetStackID());
tools/lldb/source/Commands/CommandObjectThread.cpp
  217       const lldb::addr_t pc = frame_sp->GetStackID().GetPC();
tools/lldb/source/Core/IOHandler.cpp
 3053       if (frame->GetStackID() != m_stack_id) {
 3054         m_stack_id = frame->GetStackID();
tools/lldb/source/Expression/DWARFExpression.cpp
 2508         StackID id = frame->GetStackID();
tools/lldb/source/Target/ExecutionContext.cpp
  363        m_frame_sp->GetStackID() == rhs.m_frame_sp->GetStackID())) {
  363        m_frame_sp->GetStackID() == rhs.m_frame_sp->GetStackID())) {
  449     m_stack_id = frame_sp->GetStackID();
  492     m_stack_id = frame_sp->GetStackID();
tools/lldb/source/Target/Process.cpp
 4699   StackID ctx_frame_id = selected_frame_sp->GetStackID();
 4711     selected_stack_id = selected_thread_sp->GetSelectedFrame()->GetStackID();
tools/lldb/source/Target/StackFrame.cpp
 1849   assert(GetStackID() ==
 1850          prev_frame.GetStackID()); // TODO: remove this after some testing
 1861   assert(GetStackID() ==
 1862          curr_frame.GetStackID());     // TODO: remove this after some testing
tools/lldb/source/Target/StackFrameList.cpp
  587       if (curr_frame->GetStackID() != prev_frame->GetStackID())
  587       if (curr_frame->GetStackID() != prev_frame->GetStackID())
  630       frame->GetStackID().Dump(s);
  728   return stack_sp->GetStackID() < stack_id;
  744         if ((*pos)->GetStackID() == stack_id)
  750       if (frame_sp && frame_sp->GetStackID() == stack_id)
  886   StackID curr_stack_id(curr_frame_zero_sp->GetStackID());
  887   StackID prev_stack_id(prev_frame_zero_sp->GetStackID());
tools/lldb/source/Target/Thread.cpp
  309     BroadcastSelectedFrameChange(frame->GetStackID());
  319       BroadcastSelectedFrameChange(frame_sp->GetStackID());
tools/lldb/source/Target/ThreadPlanStepInstruction.cpp
   41   m_stack_id = start_frame_sp->GetStackID();
   48     m_parent_frame_id = parent_frame_sp->GetStackID();
   98   StackID cur_frame_id = m_thread.GetStackFrameAtIndex(0)->GetStackID();
  138     StackID cur_frame_zero_id = cur_frame_sp->GetStackID();
  157         if (return_frame->GetStackID() != m_parent_frame_id ||
tools/lldb/source/Target/ThreadPlanStepOut.cpp
   76   m_step_out_to_id = return_frame_sp->GetStackID();
   77   m_immediate_step_from_id = immediate_return_from_sp->GetStackID();
  280         StackID frame_zero_id = m_thread.GetStackFrameAtIndex(0)->GetStackID();
  347     StackID frame_zero_id = m_thread.GetStackFrameAtIndex(0)->GetStackID();
  508   StackID frame_zero_id = m_thread.GetStackFrameAtIndex(0)->GetStackID();
tools/lldb/source/Target/ThreadPlanStepRange.cpp
   44   m_stack_id = m_thread.GetStackFrameAtIndex(0)->GetStackID();
   47     m_parent_stack_id = parent_stack->GetStackID();
  220   StackID cur_frame_id = m_thread.GetStackFrameAtIndex(0)->GetStackID();
  230       cur_parent_id = cur_parent_frame->GetStackID();
tools/lldb/source/Target/ThreadPlanStepThrough.cpp
  255           m_thread.GetStackFrameAtIndex(0)->GetStackID();
tools/lldb/source/Target/ThreadPlanStepUntil.cpp
   41     m_step_from_insn = frame_sp->GetStackID().GetPC();
   50       m_return_addr = return_frame_sp->GetStackID().GetPC();
   63     m_stack_id = frame_sp->GetStackID();
  202                 m_thread.GetStackFrameAtIndex(0)->GetStackID();