-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
timers: improve setImmediate() performance
This commit improves setImmediate() performance by moving the try-finally block that wraps callback execution into a separate function because currently v8 never tries to optimize functions that contain try-finally blocks. With this change, there is a ~20-40% improvement in the included setImmediate() depth benchmarks. The breadth benchmarks show a slight improvement. PR-URL: #4169 Reviewed-By: Minwoo Jung <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]>
- Loading branch information
1 parent
b1a4870
commit d3654d8
Showing
5 changed files
with
141 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
'use strict'; | ||
|
||
const common = require('../common.js'); | ||
const bench = common.createBenchmark(main, { | ||
millions: [5] | ||
}); | ||
|
||
function main(conf) { | ||
const N = +conf.millions * 1e6; | ||
|
||
process.on('exit', function() { | ||
bench.end(N / 1e6); | ||
}); | ||
|
||
function cb1(arg1) {} | ||
function cb2(arg1, arg2) {} | ||
function cb3(arg1, arg2, arg3) {} | ||
|
||
bench.start(); | ||
for (let i = 0; i < N; i++) { | ||
if (i % 3 === 0) | ||
setImmediate(cb3, 512, true, null); | ||
else if (i % 2 === 0) | ||
setImmediate(cb2, false, 5.1); | ||
else | ||
setImmediate(cb1, 0); | ||
} | ||
} |
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,21 @@ | ||
'use strict'; | ||
|
||
const common = require('../common.js'); | ||
const bench = common.createBenchmark(main, { | ||
millions: [10] | ||
}); | ||
|
||
function main(conf) { | ||
const N = +conf.millions * 1e6; | ||
|
||
process.on('exit', function() { | ||
bench.end(N / 1e6); | ||
}); | ||
|
||
function cb() {} | ||
|
||
bench.start(); | ||
for (let i = 0; i < N; i++) { | ||
setImmediate(cb); | ||
} | ||
} |
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,47 @@ | ||
'use strict'; | ||
|
||
const common = require('../common.js'); | ||
const bench = common.createBenchmark(main, { | ||
millions: [10] | ||
}); | ||
|
||
function main(conf) { | ||
const N = +conf.millions * 1e6; | ||
|
||
process.on('exit', function() { | ||
bench.end(N / 1e6); | ||
}); | ||
|
||
function cb3(n, arg2, arg3) { | ||
if (--n) { | ||
if (n % 3 === 0) | ||
setImmediate(cb3, n, true, null); | ||
else if (n % 2 === 0) | ||
setImmediate(cb2, n, 5.1); | ||
else | ||
setImmediate(cb1, n); | ||
} | ||
} | ||
function cb2(n, arg2) { | ||
if (--n) { | ||
if (n % 3 === 0) | ||
setImmediate(cb3, n, true, null); | ||
else if (n % 2 === 0) | ||
setImmediate(cb2, n, 5.1); | ||
else | ||
setImmediate(cb1, n); | ||
} | ||
} | ||
function cb1(n) { | ||
if (--n) { | ||
if (n % 3 === 0) | ||
setImmediate(cb3, n, true, null); | ||
else if (n % 2 === 0) | ||
setImmediate(cb2, n, 5.1); | ||
else | ||
setImmediate(cb1, n); | ||
} | ||
} | ||
bench.start(); | ||
setImmediate(cb1, N); | ||
} |
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,22 @@ | ||
'use strict'; | ||
|
||
const common = require('../common.js'); | ||
const bench = common.createBenchmark(main, { | ||
millions: [10] | ||
}); | ||
|
||
function main(conf) { | ||
const N = +conf.millions * 1e6; | ||
let n = N; | ||
|
||
process.on('exit', function() { | ||
bench.end(N / 1e6); | ||
}); | ||
|
||
bench.start(); | ||
setImmediate(onNextTick); | ||
function onNextTick() { | ||
if (--n) | ||
setImmediate(onNextTick); | ||
} | ||
} |
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