1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 15:24:46 -05:00
denoland-deno/ext
Aapo Alasuutari 2164f6b1eb
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 15:56:56 +02:00
..
broadcast_channel perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
console chore: forward v1.24.2 release commit to main (#15410) 2022-08-05 00:10:47 +02:00
crypto perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
fetch perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
ffi perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
http perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
net perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
node perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
tls chore: forward v1.24.2 release commit to main (#15410) 2022-08-05 00:10:47 +02:00
url perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
web perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
webgpu perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
webidl chore: forward v1.24.2 release commit to main (#15410) 2022-08-05 00:10:47 +02:00
websocket perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
webstorage perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00