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

References

tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
  186   cursor.pc = reg_ctx->GetPC(LLDB_INVALID_ADDRESS);
  187   cursor.fp = reg_ctx->GetFP(0);
  189   Frame_x86_64 frame = {cursor.fp, cursor.pc};
  189   Frame_x86_64 frame = {cursor.fp, cursor.pc};
  191   m_cursors.push_back(cursor);
  201       cursor.pc = frame.pc;
  202       cursor.fp = frame.fp;
  203       m_cursors.push_back(cursor);
  234             cursor.fp = m_cursors.front().fp;
  235             cursor.pc = frame.pc; // Set the new second frame PC
  238             m_cursors.insert(m_cursors.begin() + 1, cursor);