Home | History | Annotate | Download | only in Utility

Lines Matching full:frame_num

272 UnwindLLDB::GetRegisterContextForFrameNum (uint32_t frame_num)
275 if (frame_num < m_frames.size())
276 reg_ctx_sp = m_frames[frame_num]->reg_ctx_lldb_sp;
283 int64_t frame_num = starting_frame_num;
284 if (frame_num >= m_frames.size())
288 // isn't saved by frame_num, none of the frames lower on the stack will have a useful value.
292 result = m_frames[frame_num]->reg_ctx_lldb_sp->SavedLocationForRegister (lldb_regnum, regloc);
298 while (frame_num >= 0)
301 result = m_frames[frame_num]->reg_ctx_lldb_sp->SavedLocationForRegister (lldb_regnum, regloc);
309 && frame_num > 0)
319 frame_num--;