Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-11-27 | feat(ops): fast calls for Wasm (#16776) | Divy Srivastava | |
This PR introduces Wasm ops. These calls are optimized for entry from Wasm land. The `#[op(wasm)]` attribute is opt-in. Last parameter `Option<&mut [u8]>` is the memory slice of the Wasm module *when entered from a Fast API call*. Otherwise, the user is expected to implement logic to obtain the memory if `None` ```rust #[op(wasm)] pub fn op_args_get( offset: i32, buffer_offset: i32, memory: Option<&mut [u8]>, ) { // ... } ``` | |||
2022-09-22 | chore(ops): update docs on fast calls (#15985) | Divy Srivastava | |
2022-09-11 | chore(ops): fix typo on readme (#15848) | Eder Lima | |
2022-08-26 | fix: typo in deno_ops README (#15606) | Gabriele Mastrapasqua | |
2022-08-21 | feat(ops): V8 Fast Calls (#15291) | Divy Srivastava | |
2022-07-22 | Revert "feat(ops): V8 Fast Calls (#15122)" (#15276) | Divy Srivastava | |
This reverts commit 03dc3b8972f460e40d0b75fc3207cae9fe4f60da. | |||
2022-07-22 | feat(ops): V8 Fast Calls (#15122) | Divy Srivastava | |
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com> | |||
2022-03-14 | feat(core): codegen ops (#13861) | Divy Srivastava | |
Co-authored-by: Aaron O'Mullan <aaron.omullan@gmail.com> |