Lines Matching refs:stack_top
74 uptr stack_top, in GetCanonicFrame() argument
76 CHECK_GT(stack_top, stack_bottom); in GetCanonicFrame()
78 if (!IsValidFrame(bp, stack_top, stack_bottom)) return 0; in GetCanonicFrame()
80 if (IsValidFrame((uptr)bp_prev[0], stack_top, stack_bottom)) return bp_prev; in GetCanonicFrame()
83 if (IsValidFrame((uptr)bp_prev[-1], stack_top, stack_bottom)) in GetCanonicFrame()
95 void BufferedStackTrace::UnwindFast(uptr pc, uptr bp, uptr stack_top, in UnwindFast() argument
102 if (stack_top < 4096) return; // Sanity check for stack top. in UnwindFast()
103 uhwptr *frame = GetCanonicFrame(bp, stack_top, stack_bottom); in UnwindFast()
108 while (IsValidFrame((uptr)frame, stack_top, bottom) && in UnwindFast()
116 if (!IsValidFrame((uptr)caller_frame, stack_top, bottom) || in UnwindFast()
143 frame = GetCanonicFrame(new_bp, stack_top, bottom); in UnwindFast()