2021-05-20 14:45:53 +00:00
|
|
|
# Benching utility for `deno_core` op system
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```rust
|
|
|
|
use deno_bench_util::bench_or_profile;
|
|
|
|
use deno_bench_util::bencher::{benchmark_group, Bencher};
|
|
|
|
use deno_bench_util::bench_js_sync};
|
|
|
|
|
|
|
|
use deno_core::op_sync;
|
|
|
|
use deno_core::serialize_op_result;
|
2021-12-29 13:37:56 +00:00
|
|
|
use deno_core::Extension;
|
2021-05-20 14:45:53 +00:00
|
|
|
use deno_core::JsRuntime;
|
|
|
|
use deno_core::Op;
|
|
|
|
use deno_core::OpState;
|
|
|
|
|
2021-12-29 13:37:56 +00:00
|
|
|
fn setup() -> Vec<Extension> {
|
|
|
|
let custom_ext = Extension::builder()
|
|
|
|
.ops(vec![
|
|
|
|
("op_nop", |state, _| {
|
|
|
|
Op::Sync(serialize_op_result(Ok(9), state))
|
|
|
|
}),
|
|
|
|
])
|
|
|
|
.build();
|
|
|
|
|
|
|
|
vec![
|
|
|
|
// deno_{ext}::init(...),
|
|
|
|
custom_ext,
|
|
|
|
]
|
2021-05-20 14:45:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn bench_op_nop(b: &mut Bencher) {
|
2021-12-29 13:37:56 +00:00
|
|
|
bench_js_sync(b, r#"Deno.core.opSync("op_nop", null, null);"#, setup);
|
2021-05-20 14:45:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
benchmark_group!(benches, bench_op_nop);
|
|
|
|
bench_or_profile!(benches);
|
|
|
|
```
|