summaryrefslogtreecommitdiff
path: root/deps/v8/test/js-perf-test/Inspector/debugger.js
blob: e9c862563b91023c6592e344e5a78eae73ec8186 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// Copyright 2017 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.

(function() {

createSuite('Debugger.paused', 10000, DebuggerPaused, Setup, TearDown);
createSuite(
    'Debugger.getPossibleBreakpoints', 10000, DebuggerGetPossibleBreakpoints,
    SetupGetPossibleBreakpoints, TearDown);
createSuite(
    'AsyncStacksInstrumentation', 10000, AsyncStacksInstrumentation,
    SetupAsyncStacksInstrumentation, TearDown);

function Setup() {
  SendMessage('Debugger.enable');
  // Force lazy compilation of inspector related scripts.
  SendMessage('Runtime.evaluate', {expression: ''});
}

function TearDown() {
  SendMessage('Debugger.disable');
}

function DebuggerPaused() {
  for (var i = 0; i < 10; ++i) {
    debugger;
  }
}

let scriptId;
function SetupGetPossibleBreakpoints() {
  Setup();
  let expression = '';
  for (let i = 0; i < 20; ++i) {
    expression += `function foo${i}(){
        if (a) {
          return true;
        } else {
          return false;
        }
      }\n`;
  };
  listener = function(msg) {
    if (msg.method === 'Debugger.scriptParsed') {
      scriptId = msg.params.scriptId;
      listener = null;
    }
  };
  SendMessage('Runtime.evaluate', {expression});
}

function DebuggerGetPossibleBreakpoints() {
  SendMessage(
      'Debugger.getPossibleBreakpoints',
      {start: {lineNumber: 0, columnNumber: 0, scriptId: scriptId}});
}

function SetupAsyncStacksInstrumentation() {
  Setup();
  SendMessage('Debugger.setAsyncCallStackDepth', {maxDepth: 1024});
}

function AsyncStacksInstrumentation() {
  var p = Promise.resolve();
  var nopCallback = () => undefined;
  var done = false;
  for (let i = 0; i < 1000; ++i) {
    p = p.then(nopCallback);
  }
  p = p.then(() => done = true);
  while (!done) %PerformMicrotaskCheckpoint();
}

})();