This website requires JavaScript.
Explore
Help
Sign in
foster
/
denoland-deno
Watch
0
Star
0
Fork
You've already forked denoland-deno
0
mirror of
https://github.com/denoland/deno.git
synced
2024-11-01 09:24:20 -04:00
Code
Issues
Wiki
Activity
a938aaf36f
denoland-deno
/
cli
/
tests
/
testdata
/
unstable_ffi_15.js
2 lines
35 B
JavaScript
Raw
Normal View
History
Unescape
Escape
perf(ops): Monomorphic sync op calls (#15337) Welcome to better optimised op calls! Currently opSync is called with parameters of every type and count. This most definitely makes the call megamorphic. Additionally, it seems that spread params leads to V8 not being able to optimise the calls quite as well (apparently Fast Calls cannot be used with spread params). Monomorphising op calls should lead to some improved performance. Now that unwrapping of sync ops results is done on Rust side, this is pretty simple: ``` opSync("op_foo", param1, param2); // -> turns to ops.op_foo(param1, param2); ``` This means sync op calls are now just directly calling the native binding function. When V8 Fast API Calls are enabled, this will enable those to be called on the optimised path. Monomorphising async ops likely requires using callbacks and is left as an exercise to the reader.
2022-08-11 09:56:56 -04:00
Deno
.
core
.
ops
.
op
_ffi
_read
_f64
(
0
n
)
;
Copy permalink