mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
67 lines
1.7 KiB
JavaScript
67 lines
1.7 KiB
JavaScript
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
// Run with: deno run -A ./cli/bench/deno_common.js
|
|
function benchSync(name, n, innerLoop) {
|
|
const t1 = Date.now();
|
|
for (let i = 0; i < n; i++) {
|
|
innerLoop(i);
|
|
}
|
|
const t2 = Date.now();
|
|
const dt = (t2 - t1) / 1e3;
|
|
const r = n / dt;
|
|
const ns = Math.floor(dt / n * 1e9);
|
|
console.log(
|
|
`${name}:${" ".repeat(20 - name.length)}\t` +
|
|
`n = ${n}, dt = ${dt.toFixed(3)}s, r = ${r.toFixed(0)}/s, t = ${ns}ns/op`,
|
|
);
|
|
}
|
|
|
|
function benchUrlParse() {
|
|
benchSync("url_parse", 5e4, (i) => {
|
|
new URL(`http://www.google.com/${i}`);
|
|
});
|
|
}
|
|
|
|
function benchDateNow() {
|
|
benchSync("date_now", 5e5, () => {
|
|
Date.now();
|
|
});
|
|
}
|
|
|
|
function benchPerfNow() {
|
|
benchSync("perf_now", 5e5, () => {
|
|
performance.now();
|
|
});
|
|
}
|
|
|
|
function benchWriteNull() {
|
|
// Not too large since we want to measure op-overhead not sys IO
|
|
const dataChunk = new Uint8Array(100);
|
|
const file = Deno.openSync("/dev/null", { write: true });
|
|
benchSync("write_null", 5e5, () => {
|
|
Deno.writeSync(file.rid, dataChunk);
|
|
});
|
|
Deno.close(file.rid);
|
|
}
|
|
|
|
function benchReadZero() {
|
|
const buf = new Uint8Array(100);
|
|
const file = Deno.openSync("/dev/zero");
|
|
benchSync("read_zero", 5e5, () => {
|
|
Deno.readSync(file.rid, buf);
|
|
});
|
|
Deno.close(file.rid);
|
|
}
|
|
|
|
function main() {
|
|
// v8 builtin that's close to the upper bound non-NOPs
|
|
benchDateNow();
|
|
// A very lightweight op, that should be highly optimizable
|
|
benchPerfNow();
|
|
// A common "language feature", that should be fast
|
|
// also a decent representation of a non-trivial JSON-op
|
|
benchUrlParse();
|
|
// IO ops
|
|
benchReadZero();
|
|
benchWriteNull();
|
|
}
|
|
main();
|