2021-04-02 10:06:30 -04:00
|
|
|
use deno_core::error::AnyError;
|
2021-04-12 15:55:05 -04:00
|
|
|
use deno_core::op_async;
|
|
|
|
use deno_core::op_sync;
|
2021-04-12 17:38:26 -04:00
|
|
|
use deno_core::serialize_op_result;
|
2021-03-30 10:20:45 -04:00
|
|
|
use deno_core::JsRuntime;
|
|
|
|
use deno_core::Op;
|
2021-04-02 10:06:30 -04:00
|
|
|
use deno_core::OpState;
|
2021-04-02 11:36:01 -04:00
|
|
|
use deno_core::ZeroCopyBuf;
|
2021-04-02 10:06:30 -04:00
|
|
|
|
2021-04-18 08:51:48 -04:00
|
|
|
use bench_util::bench_or_profile;
|
|
|
|
use bench_util::bencher::{benchmark_group, Bencher};
|
|
|
|
use bench_util::{bench_js_async, bench_js_sync};
|
|
|
|
|
2021-04-02 10:06:30 -04:00
|
|
|
use std::cell::RefCell;
|
|
|
|
use std::rc::Rc;
|
2021-03-30 10:20:45 -04:00
|
|
|
|
2021-04-18 08:51:48 -04:00
|
|
|
fn setup(rt: &mut JsRuntime) {
|
|
|
|
rt.register_op("pi_json", op_sync(|_, _: (), _| Ok(314159)));
|
|
|
|
rt.register_op("pi_async", op_async(op_pi_async));
|
|
|
|
rt.register_op("nop", |state, _, _| {
|
2021-04-12 17:38:26 -04:00
|
|
|
Op::Sync(serialize_op_result(Ok(9), state))
|
|
|
|
});
|
2021-03-30 10:20:45 -04:00
|
|
|
}
|
|
|
|
|
2021-04-02 10:06:30 -04:00
|
|
|
// this is a function since async closures aren't stable
|
|
|
|
async fn op_pi_async(
|
|
|
|
_: Rc<RefCell<OpState>>,
|
|
|
|
_: (),
|
2021-04-02 11:36:01 -04:00
|
|
|
_: Option<ZeroCopyBuf>,
|
2021-04-02 10:06:30 -04:00
|
|
|
) -> Result<i64, AnyError> {
|
|
|
|
Ok(314159)
|
|
|
|
}
|
|
|
|
|
2021-03-30 10:20:45 -04:00
|
|
|
fn bench_op_pi_json(b: &mut Bencher) {
|
2021-04-18 08:51:48 -04:00
|
|
|
bench_js_sync(b, r#"Deno.core.opSync("pi_json");"#, setup);
|
2021-03-30 10:20:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn bench_op_nop(b: &mut Bencher) {
|
2021-04-18 08:51:48 -04:00
|
|
|
bench_js_sync(
|
2021-03-30 10:20:45 -04:00
|
|
|
b,
|
2021-04-18 08:51:48 -04:00
|
|
|
r#"Deno.core.dispatchByName("nop", null, null, null);"#,
|
|
|
|
setup,
|
2021-03-30 10:20:45 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-04-02 10:06:30 -04:00
|
|
|
fn bench_op_async(b: &mut Bencher) {
|
2021-04-18 08:51:48 -04:00
|
|
|
bench_js_async(b, r#"Deno.core.opAsync("pi_async");"#, setup);
|
2021-04-02 10:06:30 -04:00
|
|
|
}
|
|
|
|
|
2021-04-12 15:55:05 -04:00
|
|
|
benchmark_group!(benches, bench_op_pi_json, bench_op_nop, bench_op_async);
|
2021-04-18 08:51:48 -04:00
|
|
|
bench_or_profile!(benches);
|