1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-28 01:59:06 -05:00
denoland-deno/core
Aaron O'Mullan 2865f39bec
perf(core.js): introduce promise ring (#9979)
This is another optimization to help improve the baseline overhead 
of async ops. It shaves off ~55ns/op or ~7% of the current total 
async op overhead.

It achieves these gains by taking advantage of the sequential 
nature of promise IDs and optimistically stores them sequentially 
in a pre-allocated circular buffer and fallbacks to the promise Map 
for slow to resolve promises.
2021-04-07 14:38:54 +02:00
..
benches core/op_baseline: drop BufVec and minor cleanup (#9969) 2021-04-02 17:36:01 +02:00
examples refactor(ops): remove variadic buffers (#9944) 2021-04-02 09:47:57 -04:00
async_cancel.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00
async_cell.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00
bindings.rs perf(serde_v8): introduce Serializable boxable object (#9983) 2021-04-04 01:17:02 +02:00
Cargo.toml perf(serde_v8): introduce Serializable boxable object (#9983) 2021-04-04 01:17:02 +02:00
core.js perf(core.js): introduce promise ring (#9979) 2021-04-07 14:38:54 +02:00
encode_decode_test.js chore: use strict mode for internal runtime, core, and op_crates js (#9391) 2021-02-04 23:18:32 +01:00
error.js chore: use strict mode for internal runtime, core, and op_crates js (#9391) 2021-02-04 23:18:32 +01:00
error.rs refactor(ops): remove variadic buffers (#9944) 2021-04-02 09:47:57 -04:00
flags.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00
gotham_state.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
icudtl.dat upgrade: rusty_v8 0.19.0 (#9466) 2021-02-15 17:32:08 +01:00
lib.deno_core.d.ts refactor: new optimized op-layer using serde_v8 (#9843) 2021-03-31 10:37:38 -04:00
lib.rs perf(serde_v8): introduce Serializable boxable object (#9983) 2021-04-04 01:17:02 +02:00
module_specifier.rs Make ModuleSpecifier a type alias, not wrapper struct (#9531) 2021-02-17 13:47:18 -05:00
modules.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
normalize_path.rs feat(lsp): add import completions (#9821) 2021-03-25 11:13:37 +11:00
ops.rs core: remove serde_json-isms in op_close() and op_resources() (#10026) 2021-04-05 23:17:00 -04:00
ops_bin.rs refactor(ops): remove variadic buffers (#9944) 2021-04-02 09:47:57 -04:00
ops_json.rs refactor(ops): remove variadic buffers (#9944) 2021-04-02 09:47:57 -04:00
plugin_api.rs refactor(ops): remove variadic buffers (#9944) 2021-04-02 09:47:57 -04:00
README.md chore: rename default branch to main (#9503) 2021-02-19 15:58:19 +01:00
resources.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00
runtime.rs fix: Properly await already evaluating dynamic imports (#9984) 2021-04-04 07:26:00 -04:00
serialize_deserialize_test.js feat: add structured cloning to Deno.core (#9458) 2021-02-16 14:20:21 +01:00
zero_copy_buf.rs refactor(ops): remove variadic buffers (#9944) 2021-04-02 09:47:57 -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).

In order to bind Rust functions into JavaScript, use the Deno.core.dispatch() function to trigger the "dispatch" callback in Rust. The user is responsible for encoding both the request and response into a Uint8Array.

Documentation for this crate is thin at the moment. Please see http_bench_bin_ops.rs and http_bench_json_ops.rs as a simple example of usage.

TypeScript support and a lot of other functionality is not available at this layer. See the CLI for that.