deno_ffi

Crates.iodeno_ffi
lib.rsdeno_ffi
version0.147.0
sourcesrc
created_at2021-08-10 09:20:44.046581
updated_at2024-07-12 20:22:06.315843
descriptionDynamic library ffi for deno
homepage
repositoryhttps://github.com/denoland/deno
max_upload_size
id434132
size162,911
(denobot)

documentation

README

deno_ffi

This crate implements dynamic library ffi.

Performance

Deno FFI calls have extremely low overhead (~1ns on M1 16GB RAM) and perform on par with native code. Deno leverages V8 fast api calls and JIT compiled bindings to achieve these high speeds.

Deno.dlopen generates an optimized and a fallback path. Optimized paths are triggered when V8 decides to optimize the function, hence call through the Fast API. Fallback paths handle types like function callbacks and implement proper error handling for unexpected types, that is not supported in Fast calls.

Optimized calls enter a JIT compiled function "trampoline" that translates Fast API values directly for symbol calls. JIT compilation itself is super fast, thanks to tinycc. Currently, the optimized path is only supported on Linux and MacOS.

To run benchmarks:

target/release/deno bench --allow-ffi --allow-read --unstable-ffi ./tests/ffi/tests/bench.js
Commit count: 11748

cargo fmt