1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/runtime/js
Aapo Alasuutari 81394482e5 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 13:29:18 -04:00
..
01_build.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
01_errors.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
01_version.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
01_web_util.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
06_util.js refactor: cleanup assert() & AssertionError definitions (#13859) 2022-03-19 13:57:37 +01:00
10_permissions.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 13:29:18 -04:00
11_workers.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 13:29:18 -04:00
12_io.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 13:29:18 -04:00
13_buffer.js refactor: cleanup assert() & AssertionError definitions (#13859) 2022-03-19 13:57:37 +01:00
30_fs.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 13:29:18 -04:00
30_os.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 13:29:18 -04:00
40_diagnostics.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
40_files.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 13:29:18 -04:00
40_fs_events.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 13:29:18 -04:00
40_http.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 13:29:18 -04:00
40_process.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 13:29:18 -04:00
40_read_file.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 13:29:18 -04:00
40_signals.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 13:29:18 -04:00
40_spawn.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 13:29:18 -04:00
40_testing.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 13:29:18 -04:00
40_tty.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 13:29:18 -04:00
40_write_file.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 13:29:18 -04:00
41_prompt.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
90_deno_ns.js feat(ext/ffi): Callbacks (#14663) 2022-06-20 16:36:04 +05:30
99_main.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 13:29:18 -04:00
README.md feat: add --location=<href> and globalThis.location (#7369) 2021-01-07 19:06:08 +01:00

Runtime JavaScript Code

This directory contains Deno runtime code written in plain JavaScript.

Each file is a plain, old script, not ES modules. The reason is that snapshotting ES modules is much harder, especially if one needs to manipulate global scope (like in case of Deno).

Each file is prefixed with a number, telling in which order scripts should be loaded into V8 isolate. This is temporary solution and we're striving not to require specific order (though it's not 100% obvious if that's feasible).

Deno Web APIs

This directory facilities Web APIs that are available in Deno.

Please note, that some implementations might not be completely aligned with specification.

Some Web APIs are using ops under the hood, eg. console, performance.

Implemented Web APIs