mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
perf: use fast api for core.isProxy
(#15682)
This commit is contained in:
parent
448654764f
commit
a7558196a7
5 changed files with 62 additions and 26 deletions
|
@ -41,16 +41,6 @@ fn bench_op_async(b: &mut Bencher) {
|
|||
bench_js_async(b, r#"Deno.core.opAsync("op_pi_async");"#, setup);
|
||||
}
|
||||
|
||||
fn bench_is_proxy(b: &mut Bencher) {
|
||||
bench_js_sync(b, r#"Deno.core.isProxy(42);"#, setup);
|
||||
}
|
||||
|
||||
benchmark_group!(
|
||||
benches,
|
||||
bench_op_pi_json,
|
||||
bench_op_nop,
|
||||
bench_op_async,
|
||||
bench_is_proxy
|
||||
);
|
||||
benchmark_group!(benches, bench_op_pi_json, bench_op_nop, bench_op_async,);
|
||||
|
||||
bench_or_profile!(benches);
|
||||
|
|
|
@ -306,7 +306,7 @@
|
|||
deserialize: (buffer, options) => ops.op_deserialize(buffer, options),
|
||||
getPromiseDetails: (promise) => ops.op_get_promise_details(promise),
|
||||
getProxyDetails: (proxy) => ops.op_get_proxy_details(proxy),
|
||||
isProxy: (value) => ops.op_is_proxy(value),
|
||||
isProxy: (value) => ops.op_is_proxy.fast(value),
|
||||
memoryUsage: () => ops.op_memory_usage(),
|
||||
setWasmStreamingCallback: (fn) => ops.op_set_wasm_streaming_callback(fn),
|
||||
abortWasmStreaming: (
|
||||
|
|
|
@ -191,7 +191,7 @@ fn op_format_file_name(file_name: String) -> String {
|
|||
format_file_name(&file_name)
|
||||
}
|
||||
|
||||
#[op]
|
||||
#[op(fast)]
|
||||
fn op_is_proxy(value: serde_v8::Value) -> bool {
|
||||
value.v8_value.is_proxy()
|
||||
}
|
||||
|
|
|
@ -3121,6 +3121,7 @@ assertEquals(1, notify_return_value);
|
|||
runtime.execute_script("<none>", "").unwrap();
|
||||
}
|
||||
|
||||
#[ignore] // TODO(@littledivy): Fast API ops when snapshot is not loaded.
|
||||
#[test]
|
||||
fn test_is_proxy() {
|
||||
let mut runtime = JsRuntime::new(RuntimeOptions::default());
|
||||
|
|
57
ops/lib.rs
57
ops/lib.rs
|
@ -304,6 +304,7 @@ fn codegen_fast_impl(
|
|||
args,
|
||||
ret,
|
||||
use_recv,
|
||||
v8_values,
|
||||
}) = fast_info
|
||||
{
|
||||
let inputs = &f
|
||||
|
@ -311,17 +312,42 @@ fn codegen_fast_impl(
|
|||
.inputs
|
||||
.iter()
|
||||
.skip(if use_recv { 1 } else { 0 })
|
||||
.collect::<Vec<_>>();
|
||||
let input_idents = f
|
||||
.sig
|
||||
.inputs
|
||||
.iter()
|
||||
.map(|a| match a {
|
||||
.enumerate()
|
||||
.map(|(idx, arg)| {
|
||||
if v8_values.contains(&idx) {
|
||||
let ident = match arg {
|
||||
FnArg::Receiver(_) => unreachable!(),
|
||||
FnArg::Typed(t) => match &*t.pat {
|
||||
syn::Pat::Ident(i) => format_ident!("{}", i.ident),
|
||||
_ => unreachable!(),
|
||||
},
|
||||
};
|
||||
return quote! { #ident: #core::v8::Local < #core::v8::Value > };
|
||||
}
|
||||
quote!(#arg)
|
||||
})
|
||||
.collect::<Vec<_>>();
|
||||
let input_idents = f
|
||||
.sig
|
||||
.inputs
|
||||
.iter()
|
||||
.enumerate()
|
||||
.map(|(idx, a)| {
|
||||
let ident = match a {
|
||||
FnArg::Receiver(_) => unreachable!(),
|
||||
FnArg::Typed(t) => match &*t.pat {
|
||||
syn::Pat::Ident(i) => format_ident!("{}", i.ident),
|
||||
_ => unreachable!(),
|
||||
},
|
||||
};
|
||||
if v8_values.contains(&idx) {
|
||||
return quote! {
|
||||
#core::serde_v8::Value {
|
||||
v8_value: #ident,
|
||||
}
|
||||
};
|
||||
}
|
||||
quote! { #ident }
|
||||
})
|
||||
.collect::<Vec<_>>();
|
||||
let generics = &f.sig.generics;
|
||||
|
@ -453,6 +479,7 @@ struct FastApiSyn {
|
|||
args: TokenStream2,
|
||||
ret: TokenStream2,
|
||||
use_recv: bool,
|
||||
v8_values: Vec<usize>,
|
||||
}
|
||||
|
||||
fn can_be_fast_api(core: &TokenStream2, f: &syn::ItemFn) -> Option<FastApiSyn> {
|
||||
|
@ -466,6 +493,7 @@ fn can_be_fast_api(core: &TokenStream2, f: &syn::ItemFn) -> Option<FastApiSyn> {
|
|||
};
|
||||
|
||||
let mut use_recv = false;
|
||||
let mut v8_values = Vec::new();
|
||||
let mut args = vec![quote! { #core::v8::fast_api::Type::V8Value }];
|
||||
for (pos, input) in inputs.iter().enumerate() {
|
||||
if pos == 0 && is_mut_ref_opstate(input) {
|
||||
|
@ -478,6 +506,10 @@ fn can_be_fast_api(core: &TokenStream2, f: &syn::ItemFn) -> Option<FastApiSyn> {
|
|||
_ => unreachable!(),
|
||||
};
|
||||
|
||||
if let Some(arg) = is_fast_v8_value(core, ty) {
|
||||
args.push(arg);
|
||||
v8_values.push(pos);
|
||||
} else {
|
||||
match is_fast_scalar(core, ty, false) {
|
||||
None => match is_fast_arg_sequence(core, ty) {
|
||||
Some(arg) => {
|
||||
|
@ -491,6 +523,7 @@ fn can_be_fast_api(core: &TokenStream2, f: &syn::ItemFn) -> Option<FastApiSyn> {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
let args = args
|
||||
.iter()
|
||||
|
@ -501,6 +534,7 @@ fn can_be_fast_api(core: &TokenStream2, f: &syn::ItemFn) -> Option<FastApiSyn> {
|
|||
args: args.parse().unwrap(),
|
||||
ret,
|
||||
use_recv,
|
||||
v8_values,
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -523,6 +557,16 @@ fn is_fast_arg_sequence(
|
|||
None
|
||||
}
|
||||
|
||||
fn is_fast_v8_value(
|
||||
core: &TokenStream2,
|
||||
arg: impl ToTokens,
|
||||
) -> Option<TokenStream2> {
|
||||
if tokens(&arg).contains("serde_v8 :: Value") {
|
||||
return Some(quote! { #core::v8::fast_api::Type::V8Value });
|
||||
}
|
||||
None
|
||||
}
|
||||
|
||||
fn is_local_array(arg: impl ToTokens) -> bool {
|
||||
static RE: Lazy<Regex> =
|
||||
Lazy::new(|| Regex::new(r"^v8::Local<v8::Array>$").unwrap());
|
||||
|
@ -558,6 +602,7 @@ fn is_fast_scalar(
|
|||
"i32" => Some(quote! { #core::v8::fast_api::#cty::Int32 }),
|
||||
"f32" => Some(quote! { #core::v8::fast_api::#cty::Float32 }),
|
||||
"f64" => Some(quote! { #core::v8::fast_api::#cty::Float64 }),
|
||||
"bool" => Some(quote! { #core::v8::fast_api::#cty::Bool }),
|
||||
_ => None,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue