Lines Matching defs:location

216     // the same code offset. Otherwise it's just a break location that we can
217 // step to, but not actually a location where we can put a break point.
248 // There is at least one break location.
460 debug_info_ = global_handles->Create(debug_info).location();
506 // Find the break location where execution has stopped.
507 BreakLocation location = BreakLocation::FromFrame(debug_info, frame);
509 IsBreakOnInstrumentation(debug_info, location);
517 CheckBreakPoints(debug_info, &location, &has_break_points);
531 if (location.IsDebugBreakAtEntry()) {
548 // return/suspend location.
549 DCHECK(location.IsReturnOrSuspend() || hitInstrumentationBreak);
576 if (location.IsSuspend() && (!IsGeneratorFunction(shared->kind()) ||
577 location.generator_suspend_id() > 0)) {
580 location.GetGeneratorObjectForSuspendedFrame(frame);
586 step_break = step_break || location.IsReturn() ||
608 const BreakLocation& location) {
611 break_points_active_ && location.HasBreakPoint(isolate_, debug_info);
615 debug_info->GetBreakPoints(isolate_, location.position());
634 // Find break point objects for this location, if any, and evaluate them.
640 BreakLocation* location,
644 break_points_active_ && location->HasBreakPoint(isolate_, debug_info);
650 return Debug::GetHitBreakPoints(debug_info, location->position(),
655 // A break location is considered muted if break locations on the current
658 // break location, we also do not trigger one for debugger statements, nor
659 // an exception event on exception at this location.
950 wasm_scripts_with_break_points_.location());
1192 BreakLocation location = BreakLocation::Invalid();
1211 location = BreakLocation::FromFrame(debug_info, js_frame);
1215 if (location.IsReturn() ||
1216 (location.IsSuspend() &&
1218 location.generator_suspend_id() == 0)))) {
1264 if (!location.IsReturnOrSuspend() && !IsBlackboxed(shared)) {
2084 BreakLocation location = BreakLocation::FromFrame(debug_info, frame);
2085 return location.IsReturn();
2224 // Check whether the top frame is blackboxed or the break location is muted.