2021-05-22 16:52:05 -04:00
|
|
|
use deno_core::Extension;
|
|
|
|
|
2022-08-28 02:51:49 -04:00
|
|
|
use deno_bench_util::bench_js_async;
|
2021-05-22 16:52:05 -04:00
|
|
|
use deno_bench_util::bench_or_profile;
|
|
|
|
use deno_bench_util::bencher::{benchmark_group, Bencher};
|
2021-07-05 09:34:37 -04:00
|
|
|
use deno_web::BlobStore;
|
2021-05-22 16:52:05 -04:00
|
|
|
|
2021-10-04 16:56:24 -04:00
|
|
|
struct Permissions;
|
|
|
|
|
2022-02-15 06:17:30 -05:00
|
|
|
impl deno_web::TimersPermission for Permissions {
|
2021-10-04 16:56:24 -04:00
|
|
|
fn allow_hrtime(&mut self) -> bool {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
fn check_unstable(
|
|
|
|
&self,
|
|
|
|
_state: &deno_core::OpState,
|
|
|
|
_api_name: &'static str,
|
|
|
|
) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-22 16:52:05 -04:00
|
|
|
fn setup() -> Vec<Extension> {
|
|
|
|
vec![
|
2021-07-03 15:32:28 -04:00
|
|
|
deno_webidl::init(),
|
|
|
|
deno_url::init(),
|
2022-02-15 06:17:30 -05:00
|
|
|
deno_web::init::<Permissions>(BlobStore::default(), None),
|
2021-05-22 16:52:05 -04:00
|
|
|
Extension::builder()
|
|
|
|
.js(vec![
|
2022-05-15 07:27:56 -04:00
|
|
|
("setup", r#"
|
2022-08-28 02:51:49 -04:00
|
|
|
const { setTimeout, handleTimerMacrotask } = globalThis.__bootstrap.timers;
|
2022-05-15 07:27:56 -04:00
|
|
|
Deno.core.setMacrotaskCallback(handleTimerMacrotask);
|
|
|
|
"#),
|
2021-05-22 16:52:05 -04:00
|
|
|
])
|
|
|
|
.state(|state| {
|
2021-10-04 16:56:24 -04:00
|
|
|
state.put(Permissions{});
|
2021-05-22 16:52:05 -04:00
|
|
|
Ok(())
|
|
|
|
})
|
|
|
|
.build()
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bench_set_timeout(b: &mut Bencher) {
|
|
|
|
bench_js_async(b, r#"setTimeout(() => {}, 0);"#, setup);
|
|
|
|
}
|
|
|
|
|
2022-08-28 02:51:49 -04:00
|
|
|
benchmark_group!(benches, bench_set_timeout,);
|
2021-05-22 16:52:05 -04:00
|
|
|
bench_or_profile!(benches);
|