a7c8a3ea9b
This changes the behavior of SetBreakpointForScript to find more accurate break positions. Previously, setting a breakpoint would only consider the shared function info that contained the requested position for setting a breakpoint. More intuitively, a breakpoint should not necessarily be set in a function that contains the position, but in the closest breakable location that comes after the position we requested. To achieve this we: 1. find the shared function info of the inner most function that contains the requested_position. This function's end position is used to find other shared function infos in step 2. 2. search for all shared function infos that intersect with the range [requested_position, inner_most_function.break_position[. 3. From the shared function infos extracted in 2, find the one that has the closest breakable location to requested_position. Also-By: bmeurer@chromium.org Fixed: chromium:1137141 Change-Id: I4f4c6c3aac1ebea50cbcad9543b539ab1ded2b05 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2742198 Commit-Queue: Kim-Anh Tran <kimanh@chromium.org> Reviewed-by: Leszek Swirski <leszeks@chromium.org> Reviewed-by: Benedikt Meurer <bmeurer@chromium.org> Cr-Commit-Position: refs/heads/master@{#73392}
146 lines
4.9 KiB
JavaScript
146 lines
4.9 KiB
JavaScript
// Copyright 2018 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
//
|
|
// Flags: --harmony-public-fields --harmony-static-fields --allow-natives-syntax
|
|
|
|
Debug = debug.Debug
|
|
|
|
Debug.setListener(function() {});
|
|
|
|
class Y {
|
|
x = 1;
|
|
y = 2;
|
|
z = 3;
|
|
}
|
|
|
|
var initializer = %GetInitializerFunction(Y);
|
|
var b1, b2, b3;
|
|
|
|
// class Y {
|
|
// x = [B0]1;
|
|
// y = [B1]2;
|
|
// z = [B2]3;
|
|
// }
|
|
b1 = Debug.setBreakPoint(initializer, 0, 0);
|
|
assertTrue(Debug.showBreakPoints(initializer).indexOf("x = [B0]1;") === 0);
|
|
Debug.clearBreakPoint(b1);
|
|
assertTrue(Debug.showBreakPoints(initializer).indexOf("x = [B0]1;") === -1);
|
|
|
|
b2 = Debug.setBreakPoint(initializer, 1, 0);
|
|
assertTrue(Debug.showBreakPoints(initializer).indexOf("y = [B0]2;") > 0);
|
|
Debug.clearBreakPoint(b2);
|
|
assertTrue(Debug.showBreakPoints(initializer).indexOf("y = [B0]2;") === -1);
|
|
|
|
b3 = Debug.setBreakPoint(initializer, 2, 0);
|
|
assertTrue(Debug.showBreakPoints(initializer).indexOf("z = [B0]3") > 0);
|
|
Debug.clearBreakPoint(b3);
|
|
assertTrue(Debug.showBreakPoints(initializer).indexOf("z = [B0]3") === -1);
|
|
|
|
b1 = Debug.setBreakPoint(initializer, 0, 0);
|
|
b2 = Debug.setBreakPoint(initializer, 1, 0);
|
|
assertTrue(Debug.showBreakPoints(initializer).indexOf("x = [B0]1;") === 0);
|
|
assertTrue(Debug.showBreakPoints(initializer).indexOf("y = [B1]2;") > 0);
|
|
Debug.clearBreakPoint(b1);
|
|
assertTrue(Debug.showBreakPoints(initializer).indexOf("x = [B0]1;") === -1);
|
|
Debug.clearBreakPoint(b2);
|
|
assertTrue(Debug.showBreakPoints(initializer).indexOf("y = [B1]2;") === -1);
|
|
|
|
b1 = Debug.setBreakPoint(initializer, 0, 0);
|
|
b3 = Debug.setBreakPoint(initializer, 2, 0);
|
|
assertTrue(Debug.showBreakPoints(initializer).indexOf("x = [B0]1;") === 0);
|
|
assertTrue(Debug.showBreakPoints(initializer).indexOf("z = [B1]3") > 0);
|
|
Debug.clearBreakPoint(b1);
|
|
assertTrue(Debug.showBreakPoints(initializer).indexOf("x = [B0]1;") === -1);
|
|
Debug.clearBreakPoint(b3);
|
|
assertTrue(Debug.showBreakPoints(initializer).indexOf("z = [B1]3") === -1);
|
|
|
|
b2 = Debug.setBreakPoint(initializer, 1, 0);
|
|
b3 = Debug.setBreakPoint(initializer, 2, 0);
|
|
assertTrue(Debug.showBreakPoints(initializer).indexOf("y = [B0]2;") > 0);
|
|
assertTrue(Debug.showBreakPoints(initializer).indexOf("z = [B1]3") > 0);
|
|
Debug.clearBreakPoint(b2);
|
|
assertTrue(Debug.showBreakPoints(initializer).indexOf("y = [B0]2;") === -1);
|
|
Debug.clearBreakPoint(b3);
|
|
assertTrue(Debug.showBreakPoints(initializer).indexOf("z = [B1]3") === -1);
|
|
|
|
// The computed properties are evaluated during class construction,
|
|
// not as part of the initializer function. As a consequence of which,
|
|
// they aren't breakable here in the initializer function, but
|
|
// instead, are part of the enclosing function.
|
|
|
|
function foo() {}
|
|
var bar = 'bar';
|
|
|
|
class X {
|
|
[foo()] = 1;
|
|
baz = foo();
|
|
}
|
|
|
|
// class X {
|
|
// [foo()] = 1;
|
|
// baz = [B0]foo();
|
|
// }
|
|
|
|
initializer = %GetInitializerFunction(X);
|
|
b1 = Debug.setBreakPoint(initializer, 0, 0);
|
|
assertTrue(Debug.showBreakPoints(initializer).indexOf('[foo()] = 1;') === 0);
|
|
Debug.clearBreakPoint(b1);
|
|
|
|
b1 = Debug.setBreakPoint(initializer, 1, 0);
|
|
assertTrue(Debug.showBreakPoints(initializer).indexOf('baz = [B0]foo()') > 0);
|
|
Debug.clearBreakPoint(b1);
|
|
|
|
function t() {
|
|
class X {
|
|
[foo()] = 1;
|
|
[bar] = 2;
|
|
baz = foo();
|
|
}
|
|
}
|
|
|
|
// class X {
|
|
// [[B0]foo()] = 1;
|
|
// [[B1]bar] = 2;
|
|
// baz = foo();
|
|
// }
|
|
|
|
b1 = Debug.setBreakPoint(t, 2, 0);
|
|
assertTrue(Debug.showBreakPoints(t).indexOf('[[B0]foo()] = 1;') > 0);
|
|
Debug.clearBreakPoint(b1);
|
|
assertTrue(Debug.showBreakPoints(t).indexOf('[[B0]foo()] = 1;') === -1);
|
|
|
|
b2 = Debug.setBreakPoint(t, 3, 0);
|
|
assertTrue(Debug.showBreakPoints(t).indexOf('[[B0]bar] = 2;') > 0);
|
|
Debug.clearBreakPoint(b2);
|
|
assertTrue(Debug.showBreakPoints(t).indexOf('[[B0]bar] = [B0]2;') === -1);
|
|
|
|
b3 = Debug.setBreakPoint(t, 4, 0);
|
|
assertTrue(Debug.showBreakPoints(t).indexOf('baz = foo()') > 0);
|
|
Debug.clearBreakPoint(b3);
|
|
|
|
b1 = Debug.setBreakPoint(t, 2, 0);
|
|
b2 = Debug.setBreakPoint(t, 3, 0);
|
|
assertTrue(Debug.showBreakPoints(t).indexOf('[[B0]foo()] = 1;') > 0);
|
|
assertTrue(Debug.showBreakPoints(t).indexOf('[[B1]bar] = 2;') > 0);
|
|
Debug.clearBreakPoint(b1);
|
|
assertTrue(Debug.showBreakPoints(t).indexOf('[[B0]foo()] = 1;') === -1);
|
|
Debug.clearBreakPoint(b2);
|
|
assertTrue(Debug.showBreakPoints(t).indexOf('[[B1]bar] = 2;') === -1);
|
|
|
|
b1 = Debug.setBreakPoint(t, 2, 0);
|
|
b3 = Debug.setBreakPoint(initializer, 4, 0);
|
|
assertTrue(Debug.showBreakPoints(t).indexOf('[[B0]foo()] = 1;') > 0);
|
|
assertTrue(Debug.showBreakPoints(t).indexOf('baz = foo()') > 0);
|
|
Debug.clearBreakPoint(b1);
|
|
assertTrue(Debug.showBreakPoints(t).indexOf('[[B0]foo()] = 1;') === -1);
|
|
Debug.clearBreakPoint(b3);
|
|
|
|
b2 = Debug.setBreakPoint(t, 3, 0);
|
|
b3 = Debug.setBreakPoint(t, 4, 0);
|
|
assertTrue(Debug.showBreakPoints(t).indexOf('[[B0]bar] = 2;') > 0);
|
|
assertTrue(Debug.showBreakPoints(t).indexOf('baz = foo()') > 0);
|
|
Debug.clearBreakPoint(b2);
|
|
assertTrue(Debug.showBreakPoints(t).indexOf('[[B0]bar] = 2;') === -1);
|
|
Debug.clearBreakPoint(b3);
|