0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/cli/bench/http
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
..
bun_http.js chore(cli/bench): Add bun HTTP server (#15004) 2022-06-29 16:57:19 +05:30
deno_http_native.js chore(bench): generalized HTTP benchmarks framework (#14815) 2022-06-08 17:33:38 +05:30
deno_http_native_headers.js chore(bench): generalized HTTP benchmarks framework (#14815) 2022-06-08 17:33:38 +05:30
deno_http_ops.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
deno_http_read_headers.js chore(cli/bench): Add more HTTP benchmarks (#14995) 2022-07-01 12:59:01 +05:30
deno_http_read_headers.lua chore(cli/bench): Add more HTTP benchmarks (#14995) 2022-07-01 12:59:01 +05:30
deno_post_json.js chore(cli/bench): Add more HTTP benchmarks (#14995) 2022-07-01 12:59:01 +05:30
deno_post_json.lua chore(cli/bench): Add more HTTP benchmarks (#14995) 2022-07-01 12:59:01 +05:30
deno_tcp.ts chore(bench): generalized HTTP benchmarks framework (#14815) 2022-06-08 17:33:38 +05:30
node_http.js chore(bench): generalized HTTP benchmarks framework (#14815) 2022-06-08 17:33:38 +05:30
node_http_read_headers.js chore(cli/bench): Add more HTTP benchmarks (#14995) 2022-07-01 12:59:01 +05:30
node_http_read_headers.lua chore(cli/bench): Add more HTTP benchmarks (#14995) 2022-07-01 12:59:01 +05:30
node_post_json.js chore(cli/bench): Add more HTTP benchmarks (#14995) 2022-07-01 12:59:01 +05:30
node_post_json.lua chore(cli/bench): Add more HTTP benchmarks (#14995) 2022-07-01 12:59:01 +05:30
node_tcp.js chore(bench): generalized HTTP benchmarks framework (#14815) 2022-06-08 17:33:38 +05:30