Lines Matching refs:bp
59 auto bp = GetPrevFromBoundary<FrameKind::INTERPRETER>(ptr); in GetTopFrameFromFp() local
60 if (GetBoundaryFrameMethod<FrameKind::COMPILER>(bp) == BYPASS) { in GetTopFrameFromFp()
61 return CreateCFrame(GetPrevFromBoundary<FrameKind::COMPILER>(bp), in GetTopFrameFromFp()
62 GetReturnAddressFromBoundary<FrameKind::COMPILER>(bp), in GetTopFrameFromFp()
63 GetCalleeStackFromBoundary<FrameKind::COMPILER>(bp)); in GetTopFrameFromFp()
252 auto bp = GetPrevFromBoundary<FrameKind::INTERPRETER>(prev); in NextFromIFrame() local
253 if (GetBoundaryFrameMethod<FrameKind::COMPILER>(bp) == BYPASS) { in NextFromIFrame()
254 frame_ = CreateCFrame(GetPrevFromBoundary<FrameKind::COMPILER>(bp), in NextFromIFrame()
255 GetReturnAddressFromBoundary<FrameKind::COMPILER>(bp), in NextFromIFrame()
256 GetCalleeStackFromBoundary<FrameKind::COMPILER>(bp)); in NextFromIFrame()
301 auto bp = GetPrevFromBoundary<FrameKind::INTERPRETER>(prev); in GetNextFrame() local
302 if (GetBoundaryFrameMethod<FrameKind::COMPILER>(bp) == BYPASS) { in GetNextFrame()
303 return FrameAccessor(CreateCFrame(GetPrevFromBoundary<FrameKind::COMPILER>(bp), in GetNextFrame()
304 … GetReturnAddressFromBoundary<FrameKind::COMPILER>(bp), in GetNextFrame()
305 … GetCalleeStackFromBoundary<FrameKind::COMPILER>(bp))); in GetNextFrame()