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

References

tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
  193   const size_t k_frame_size = sizeof(frame);
  194   while (frame.fp != 0 && frame.pc != 0 && ((frame.fp & 7) == 0)) {
  194   while (frame.fp != 0 && frame.pc != 0 && ((frame.fp & 7) == 0)) {
  194   while (frame.fp != 0 && frame.pc != 0 && ((frame.fp & 7) == 0)) {
  196     if (process->ReadMemory(frame.fp, &frame.fp, k_frame_size, error) !=
  196     if (process->ReadMemory(frame.fp, &frame.fp, k_frame_size, error) !=
  200     if (frame.pc >= 0x1000) {
  201       cursor.pc = frame.pc;
  202       cursor.fp = frame.fp;
  232           if (process->ReadMemory(first_frame_sp, &frame.pc, sizeof(frame.pc),
  232           if (process->ReadMemory(first_frame_sp, &frame.pc, sizeof(frame.pc),
  233                                   error) == sizeof(frame.pc)) {
  235             cursor.pc = frame.pc; // Set the new second frame PC