summaryrefslogtreecommitdiff
path: root/ops/optimizer_tests/async_result.out
diff options
context:
space:
mode:
authorDivy Srivastava <dj.srivastava23@gmail.com>2022-11-11 05:44:53 -0800
committerGitHub <noreply@github.com>2022-11-11 19:14:53 +0530
commit5b9620df7ac655449abd2cce5292bd4669b1f211 (patch)
tree5fd028c3bc3f2963172aada45c3e56174863d2f1 /ops/optimizer_tests/async_result.out
parentff92febb385c166744b49219ca7b3059c41ad34a (diff)
feat(ops): implement fast lazy async ops (#16579)
Implements fast scheduling of deferred op futures. ```rs #[op(fast)] async fn op_read( state: Rc<RefCell<OpState>>, rid: ResourceId, buf: &mut [u8], ) -> Result<u32, Error> { // ... } ``` The future is scheduled via a fast API call and polled by the event loop after being woken up by its waker.
Diffstat (limited to 'ops/optimizer_tests/async_result.out')
-rw-r--r--ops/optimizer_tests/async_result.out53
1 files changed, 53 insertions, 0 deletions
diff --git a/ops/optimizer_tests/async_result.out b/ops/optimizer_tests/async_result.out
new file mode 100644
index 000000000..d312fde73
--- /dev/null
+++ b/ops/optimizer_tests/async_result.out
@@ -0,0 +1,53 @@
+struct op_read_fast {
+ _phantom: ::std::marker::PhantomData<()>,
+}
+impl<'scope> deno_core::v8::fast_api::FastFunction for op_read_fast {
+ fn function(&self) -> *const ::std::ffi::c_void {
+ op_read_fast_fn 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, Int32, Uint32, TypedArray(CType::Uint8), CallbackOptions]
+ }
+ fn return_type(&self) -> deno_core::v8::fast_api::CType {
+ deno_core::v8::fast_api::CType::Void
+ }
+}
+fn op_read_fast_fn<'scope>(
+ _: deno_core::v8::Local<deno_core::v8::Object>,
+ __promise_id: i32,
+ rid: ResourceId,
+ buf: *const deno_core::v8::fast_api::FastApiTypedArray<u8>,
+ fast_api_callback_options: *mut deno_core::v8::fast_api::FastApiCallbackOptions,
+) -> () {
+ 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 = __ctx.state.clone();
+ 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_read::call(state, rid, buf);
+ let __op_id = __ctx.id;
+ let __state = ::std::cell::RefCell::borrow(&__ctx.state);
+ __state.tracker.track_async(__op_id);
+ let __get_class = __state.get_error_class_fn;
+ let result = _ops::queue_fast_async_op(
+ __ctx,
+ async move {
+ let result = result.await;
+ (__promise_id, __op_id, _ops::to_op_result(__get_class, result))
+ },
+ );
+}