forked from denoland/deno
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ops): support raw pointer arguments (denoland#16826)
See denoland#16814 (comment). Allows nullable buffers in low-level ops like FFI: ```rust fn op_ffi_ptr_of<FP>( state: &mut OpState, buf: *const u8, out: &mut [u32], ) where FP: FfiPermissions + 'static { // .. } ```
- Loading branch information
1 parent
7e0c558
commit fcdcc8c
Showing
6 changed files
with
160 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
=== Optimizer Dump === | ||
returns_result: false | ||
has_ref_opstate: true | ||
has_rc_opstate: false | ||
has_fast_callback_option: true | ||
fast_result: Some(Void) | ||
fast_parameters: [V8Value, Uint8Array, Uint32Array] | ||
transforms: {1: Transform { kind: PtrU8, index: 1 }, 2: Transform { kind: SliceU32(true), index: 2 }} | ||
is_async: false | ||
fast_compatible: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
struct op_ffi_ptr_of_fast<FP> { | ||
_phantom: ::std::marker::PhantomData<FP>, | ||
} | ||
impl<'scope, FP> deno_core::v8::fast_api::FastFunction for op_ffi_ptr_of_fast<FP> | ||
where | ||
FP: FfiPermissions + 'static, | ||
{ | ||
fn function(&self) -> *const ::std::ffi::c_void { | ||
op_ffi_ptr_of_fast_fn::<FP> as *const ::std::ffi::c_void | ||
} | ||
fn args(&self) -> &'static [deno_core::v8::fast_api::Type] { | ||
use deno_core::v8::fast_api::Type::*; | ||
use deno_core::v8::fast_api::CType; | ||
&[V8Value, TypedArray(CType::Uint8), TypedArray(CType::Uint32), CallbackOptions] | ||
} | ||
fn return_type(&self) -> deno_core::v8::fast_api::CType { | ||
deno_core::v8::fast_api::CType::Void | ||
} | ||
} | ||
fn op_ffi_ptr_of_fast_fn<'scope, FP>( | ||
_: deno_core::v8::Local<deno_core::v8::Object>, | ||
buf: *const deno_core::v8::fast_api::FastApiTypedArray<u8>, | ||
out: *const deno_core::v8::fast_api::FastApiTypedArray<u32>, | ||
fast_api_callback_options: *mut deno_core::v8::fast_api::FastApiCallbackOptions, | ||
) -> () | ||
where | ||
FP: FfiPermissions + 'static, | ||
{ | ||
use deno_core::v8; | ||
use deno_core::_ops; | ||
let __opts: &mut v8::fast_api::FastApiCallbackOptions = unsafe { | ||
&mut *fast_api_callback_options | ||
}; | ||
let __ctx = unsafe { | ||
&*(v8::Local::<v8::External>::cast(unsafe { __opts.data.data }).value() | ||
as *const _ops::OpCtx) | ||
}; | ||
let state = &mut ::std::cell::RefCell::borrow_mut(&__ctx.state); | ||
let buf = match unsafe { &*buf }.get_storage_if_aligned() { | ||
Some(v) => v.as_ptr(), | ||
None => { | ||
unsafe { &mut *fast_api_callback_options }.fallback = true; | ||
return Default::default(); | ||
} | ||
}; | ||
let out = match unsafe { &*out }.get_storage_if_aligned() { | ||
Some(v) => v, | ||
None => { | ||
unsafe { &mut *fast_api_callback_options }.fallback = true; | ||
return Default::default(); | ||
} | ||
}; | ||
let result = op_ffi_ptr_of::call::<FP>(state, buf, out); | ||
result | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
fn op_ffi_ptr_of<FP>(state: &mut OpState, buf: *const u8, out: &mut [u32]) | ||
where | ||
FP: FfiPermissions + 'static, | ||
{ | ||
// .. | ||
} |