1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/ext/ffi
denobot 04ba8df711
1.39.0 (#21560)
Bumped versions for 1.39.0

Please ensure:
- [x] Target branch is correct (`vX.XX` if a patch release, `main` if
minor)
- [x] Crate versions are bumped correctly
- [x] deno_std version is incremented in the code (see
`cli/deno_std.rs`)
- [x] Releases.md is updated correctly (think relevancy and remove
reverts)

To make edits to this PR:
```shell
git fetch upstream release_1_39.0 && git checkout -b release_1_39.0 upstream/release_1_39.0
```

cc @mmastrac

---------

Co-authored-by: mmastrac <mmastrac@users.noreply.github.com>
Co-authored-by: Matt Mastracci <matthew@mastracci.com>
2023-12-13 13:24:13 -07:00
..
00_ffi.js refactor: pull 'core', 'internals', 'primordials' from ES module (#21462) 2023-12-07 14:21:01 +01:00
call.rs perf(ext/ffi): switch from middleware to tasks (#21239) 2023-12-12 03:10:33 +00:00
callback.rs perf(ext/ffi): switch from middleware to tasks (#21239) 2023-12-12 03:10:33 +00:00
Cargo.toml 1.39.0 (#21560) 2023-12-13 13:24:13 -07:00
dlfcn.rs chore(ext/ffi): use dlopen2 crate (#21093) 2023-11-05 09:29:26 +00:00
ir.rs chore(ext/ffi): migrate part of FFI to op2 (#20699) 2023-09-27 07:54:43 -06:00
lib.rs perf(ext/ffi): switch from middleware to tasks (#21239) 2023-12-12 03:10:33 +00:00
README.md feat: granular --unstable-* flags (#20968) 2023-11-01 23:15:08 +01:00
repr.rs fix(ext/ffi): use anybuffer for op_ffi_buf_copy_into (#21006) 2023-10-28 10:02:57 +03:00
static.rs chore(ext/ffi): migrate part of FFI to op2 (#20699) 2023-09-27 07:54:43 -06:00
symbol.rs fix(ext/ffi): disallow empty ffi structs (#17487) 2023-01-21 21:21:14 +05:30
turbocall.rs perf: const op declaration (#18288) 2023-03-31 14:42:14 +02:00

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 ./test_ffi/tests/bench.js