Home
last modified time | relevance | path

Searched refs:bp (Results 1 – 3 of 3) sorted by relevance

/ark/js_runtime/ecmascript/tooling/backend/
Djs_debugger.cpp138 for (const auto &bp : breakpoints_) { in FindBreakpoint() local
139 if (bp.GetBytecodeOffset() == bcOffset && in FindBreakpoint()
140bp.GetMethod()->GetJSPandaFile()->GetJSPandaFileDesc() == method->GetJSPandaFile()->GetJSPandaFile… in FindBreakpoint()
141 bp.GetMethod()->GetMethodId() == method->GetMethodId()) { in FindBreakpoint()
142 return bp; in FindBreakpoint()
151 const auto &bp = *it; in RemoveBreakpoint() local
152 if (bp.GetBytecodeOffset() == bcOffset && bp.GetMethod() == method) { in RemoveBreakpoint()
/ark/runtime_core/runtime/
Dstack_walker.cpp59 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()
[all …]
/ark/runtime_core/runtime/tooling/
Ddebugger.cpp710 for (const auto &bp : breakpoints_) { in FindBreakpoint() local
711 …if (bp.GetBytecodeOffset() == bcOffset && bp.GetMethod()->GetPandaFile() == method->GetPandaFile()… in FindBreakpoint()
712 bp.GetMethod()->GetFileId() == method->GetFileId()) { in FindBreakpoint()
713 return &bp; in FindBreakpoint()
724 const auto &bp = *it; in RemoveBreakpoint() local
725 if (bp.GetBytecodeOffset() == bcOffset && bp.GetMethod() == method) { in RemoveBreakpoint()