Lines Matching defs:next_frame
255 /// Given that \p next_frame will be appended to the frame list, synthesize
256 /// tail call frames between the current end of the list and \p next_frame.
257 /// If any frames are added, adjust the frame index of \p next_frame.
266 /// | next_frame |
270 void StackFrameList::SynthesizeTailCallFrames(StackFrame &next_frame) {
276 TargetSP target_sp = next_frame.CalculateTarget();
280 lldb::RegisterContextSP next_reg_ctx_sp = next_frame.GetRegisterContext();
288 // Find the functions prev_frame and next_frame are stopped in. The function
297 next_frame.GetSymbolContext(eSymbolContextFunction).function;
303 // Try to find the unique sequence of (tail) calls which led from next_frame
308 ModuleList &images = next_frame.CalculateTarget()->GetImages();
310 exe_ctx.SetFramePtr(&next_frame);
318 uint32_t concrete_frame_idx = next_frame.GetConcreteFrameIndex();
336 // If any frames were created, adjust next_frame's index.
338 next_frame.SetFrameIndex(m_frames.size());