-
Notifications
You must be signed in to change notification settings - Fork 30.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
With this change, the V8 profiler will attribute any time between prepare and check cycles, except any entrances to InternalCallbackScope, to be "idle" time. All callbacks, microtasks, and timers will be marked as not idle. The one exception is native modules which don't use the MakeCallback helper, but those are already broken anyway for async context tracking so we should just encourage broken modules to be fixed.
- Loading branch information
Stephen Belanger
committed
Mar 22, 2021
1 parent
25985d6
commit 22e72c3
Showing
4 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
|
||
common.skipIfInspectorDisabled(); | ||
|
||
const assert = require('assert'); | ||
const { Session } = require('inspector'); | ||
const { promisify } = require('util'); | ||
|
||
const sleep = promisify(setTimeout); | ||
|
||
async function test() { | ||
const inspector = new Session(); | ||
inspector.connect(); | ||
|
||
inspector.post('Profiler.enable'); | ||
inspector.post('Profiler.start'); | ||
|
||
await sleep(10); | ||
|
||
const { profile } = await new Promise((resolve, reject) => { | ||
inspector.post('Profiler.stop', (err, params) => { | ||
if (err) return reject(err); | ||
resolve(params); | ||
}) | ||
}) | ||
|
||
let hasIdle = false; | ||
for (let node of profile.nodes) { | ||
if (node.callFrame.functionName === '(idle)') { | ||
hasIdle = true; | ||
break; | ||
} | ||
} | ||
assert(hasIdle); | ||
|
||
inspector.post('Profiler.disable'); | ||
inspector.disconnect(); | ||
} | ||
|
||
test().then(common.mustCall(() => { | ||
console.log('Done!'); | ||
})); |