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

References

tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
   94   cursor.pc = reg_ctx->GetPC(LLDB_INVALID_ADDRESS);
   95   cursor.fp = reg_ctx->GetFP(0);
   97   Frame_i386 frame = {static_cast<uint32_t>(cursor.fp),
   98                       static_cast<uint32_t>(cursor.pc)};
  100   m_cursors.push_back(cursor);
  110       cursor.pc = frame.pc;
  111       cursor.fp = frame.fp;
  112       m_cursors.push_back(cursor);
  144             cursor.fp = m_cursors.front().fp;
  145             cursor.pc = frame.pc; // Set the new second frame PC
  148             m_cursors.insert(m_cursors.begin() + 1, cursor);