mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
35 lines
888 B
Rust
35 lines
888 B
Rust
|
use deno_core::Extension;
|
||
|
|
||
|
use deno_bench_util::bench_or_profile;
|
||
|
use deno_bench_util::bencher::{benchmark_group, Bencher};
|
||
|
use deno_bench_util::{bench_js_async, bench_js_sync};
|
||
|
|
||
|
fn setup() -> Vec<Extension> {
|
||
|
vec![
|
||
|
deno_timers::init::<deno_timers::NoTimersPermission>(),
|
||
|
Extension::builder()
|
||
|
.js(vec![
|
||
|
("setup", r#"
|
||
|
const { opNow, setTimeout, handleTimerMacrotask } = globalThis.__bootstrap.timers;
|
||
|
Deno.core.setMacrotaskCallback(handleTimerMacrotask);
|
||
|
"#),
|
||
|
])
|
||
|
.state(|state| {
|
||
|
state.put(deno_timers::NoTimersPermission{});
|
||
|
Ok(())
|
||
|
})
|
||
|
.build()
|
||
|
]
|
||
|
}
|
||
|
|
||
|
fn bench_op_now(b: &mut Bencher) {
|
||
|
bench_js_sync(b, r#"opNow();"#, setup);
|
||
|
}
|
||
|
|
||
|
fn bench_set_timeout(b: &mut Bencher) {
|
||
|
bench_js_async(b, r#"setTimeout(() => {}, 0);"#, setup);
|
||
|
}
|
||
|
|
||
|
benchmark_group!(benches, bench_op_now, bench_set_timeout,);
|
||
|
bench_or_profile!(benches);
|