mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
56f58a047e
Migrations: - Error registration no longer required for Interrupted or BadResource (these are core exception) - `include_js_files!`/`ExtensionFileSource` changes
46 lines
1.2 KiB
Rust
46 lines
1.2 KiB
Rust
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
use deno_bench_util::bench_js_sync;
|
|
use deno_bench_util::bench_or_profile;
|
|
use deno_bench_util::bencher::benchmark_group;
|
|
use deno_bench_util::bencher::Bencher;
|
|
|
|
use deno_core::Extension;
|
|
|
|
fn setup() -> Vec<Extension> {
|
|
deno_core::extension!(
|
|
deno_webidl_bench,
|
|
esm_entry_point = "ext:deno_webidl_bench/setup.js",
|
|
esm = ["ext:deno_webidl_bench/setup.js" = "benches/dict.js"]
|
|
);
|
|
|
|
vec![
|
|
deno_webidl::deno_webidl::init_ops_and_esm(),
|
|
deno_webidl_bench::init_ops_and_esm(),
|
|
]
|
|
}
|
|
|
|
fn converter_undefined(b: &mut Bencher) {
|
|
bench_js_sync(b, r#"TextDecodeOptions(undefined);"#, setup);
|
|
}
|
|
|
|
fn handwritten_baseline_undefined(b: &mut Bencher) {
|
|
bench_js_sync(b, r#"handwrittenConverter(undefined)"#, setup);
|
|
}
|
|
|
|
fn converter_object(b: &mut Bencher) {
|
|
bench_js_sync(b, r#"TextDecodeOptions({});"#, setup);
|
|
}
|
|
|
|
fn handwritten_baseline_object(b: &mut Bencher) {
|
|
bench_js_sync(b, r#"handwrittenConverter({})"#, setup);
|
|
}
|
|
|
|
benchmark_group!(
|
|
benches,
|
|
converter_undefined,
|
|
handwritten_baseline_undefined,
|
|
converter_object,
|
|
handwritten_baseline_object,
|
|
);
|
|
bench_or_profile!(benches);
|