summaryrefslogtreecommitdiff
path: root/ops/optimizer_tests/op_state_with_transforms.out
diff options
context:
space:
mode:
Diffstat (limited to 'ops/optimizer_tests/op_state_with_transforms.out')
-rw-r--r--ops/optimizer_tests/op_state_with_transforms.out47
1 files changed, 47 insertions, 0 deletions
diff --git a/ops/optimizer_tests/op_state_with_transforms.out b/ops/optimizer_tests/op_state_with_transforms.out
new file mode 100644
index 000000000..f981748be
--- /dev/null
+++ b/ops/optimizer_tests/op_state_with_transforms.out
@@ -0,0 +1,47 @@
+struct op_now_fast<TP> {
+ _phantom: ::std::marker::PhantomData<TP>,
+}
+impl<'scope, TP> deno_core::v8::fast_api::FastFunction for op_now_fast<TP>
+where
+ TP: TimersPermission + 'static,
+{
+ fn function(&self) -> *const ::std::ffi::c_void {
+ op_now_fast_fn::<TP> 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), CallbackOptions]
+ }
+ fn return_type(&self) -> deno_core::v8::fast_api::CType {
+ deno_core::v8::fast_api::CType::Void
+ }
+}
+fn op_now_fast_fn<'scope, TP>(
+ _: deno_core::v8::Local<deno_core::v8::Object>,
+ buf: *const deno_core::v8::fast_api::FastApiTypedArray<u8>,
+ fast_api_callback_options: *mut deno_core::v8::fast_api::FastApiCallbackOptions,
+) -> ()
+where
+ TP: TimersPermission + '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,
+ None => {
+ unsafe { &mut *fast_api_callback_options }.fallback = true;
+ return Default::default();
+ }
+ };
+ let result = op_now::call::<TP>(state, buf);
+ result
+}