1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/core
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
..
examples perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
00_primordials.js refactor(core): Move Deno.core bindings to ops (#14793) 2022-06-07 11:25:10 +02:00
01_core.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
02_error.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
async_cancel.rs build: require safety comments on unsafe code (#13870) 2022-06-26 00:13:24 +02:00
async_cell.rs build: require safety comments on unsafe code (#13870) 2022-06-26 00:13:24 +02:00
bindings.rs refactor(core): remove unneeded ops for uncaughtException (#15296) 2022-07-25 01:10:56 +02:00
Cargo.toml chore: forward v1.24.2 release commit to main (#15410) 2022-08-05 00:10:47 +02:00
encode_decode_test.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
error.rs refactor(core): unwrap sync ops in rust (#15449) 2022-08-11 11:57:20 +02:00
error_builder_test.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
error_codes.rs fix(core): support classifying ENOTDIR (#14646) 2022-05-17 19:20:57 +02:00
extensions.rs Revert "feat(ops): V8 Fast Calls (#15122)" (#15276) 2022-07-22 19:06:32 +05:30
flags.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
gotham_state.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
icudtl.dat chore: upgrade rusty_v8 to 0.43.1 (#14713) 2022-05-26 13:13:01 +02:00
inspector.rs build: require safety comments on unsafe code (#13870) 2022-06-26 00:13:24 +02:00
internal.d.ts chore: update copyright year (#13434) 2022-01-20 16:10:16 +09:00
lib.deno_core.d.ts perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
lib.rs Revert "feat(ops): V8 Fast Calls (#15122)" (#15276) 2022-07-22 19:06:32 +05:30
module_specifier.rs fix(core): don't panic on non-existent cwd (#14957) 2022-06-25 09:21:58 +05:30
modules.rs perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
normalize_path.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
ops.rs fix(core): remove unsafe in OpsTracker (#15025) 2022-07-01 00:43:25 +02:00
ops_builtin.rs Revert "feat(ops): V8 Fast Calls (#15122)" (#15276) 2022-07-22 19:06:32 +05:30
ops_builtin_v8.rs refactor(core): unwrap sync ops in rust (#15449) 2022-08-11 11:57:20 +02:00
ops_metrics.rs fix(core): remove unsafe in OpsTracker (#15025) 2022-07-01 00:43:25 +02:00
README.md chore(core): update deno_core README (#14042) 2022-03-20 16:08:35 +05:30
resources.rs build: require safety comments on unsafe code (#13870) 2022-06-26 00:13:24 +02:00
runtime.rs perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
serialize_deserialize_test.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
source_map.rs feat: emit files on demand and fix racy emit (#15220) 2022-07-19 11:58:18 -04:00

Deno Core Crate

crates docs

The main dependency of this crate is rusty_v8, which provides the V8-Rust bindings.

This Rust crate contains the essential V8 bindings for Deno's command-line interface (Deno CLI). The main abstraction here is the JsRuntime which provides a way to execute JavaScript.

The JsRuntime implements an event loop abstraction for the executed code that keeps track of all pending tasks (async ops, dynamic module loads). It is user's responsibility to drive that loop by using JsRuntime::run_event_loop method - it must be executed in the context of Rust's future executor (eg. tokio, smol).

Rust functions can be registered in JavaScript using deno_core::Extension. Use the Deno.core.opSync() and Deno.core.opAsync() functions to trigger the op function callback. A conventional way to write ops is using the deno_ops crate.

Documentation for this crate is thin at the moment. Please see hello_world.rs and http_bench_json_ops.rs as examples of usage.

TypeScript support and lots of other functionality are not available at this layer. See the CLI for that.