Lines Matching defs:context
26 const TNode<Context> context, const TNode<Object> sent_value,
31 TNode<Context> context, TNode<Object> sent_value,
37 CAST(LoadContextElement(context, Context::EXTENSION_INDEX));
49 CallRuntime(Runtime::kDebugPushPromise, context, promise);
71 CallStub(callable, context, sent_value, async_function_object);
82 auto context = Parameter<Context>(Descriptor::kContext);
106 TNode<JSPromise> promise = NewJSPromise(context);
109 TNode<NativeContext> native_context = LoadNativeContext(context);
125 async_function_object, JSAsyncFunctionObject::kContextOffset, context);
152 CallRuntime(Runtime::kDebugPushPromise, context, promise);
160 auto context = Parameter<Context>(Descriptor::kContext);
167 CallBuiltin(Builtin::kRejectPromise, context, promise, reason,
175 CallRuntime(Runtime::kDebugPopPromise, context);
183 auto context = Parameter<Context>(Descriptor::kContext);
187 CallBuiltin(Builtin::kResolvePromise, context, promise, value);
194 CallRuntime(Runtime::kDebugPopPromise, context);
209 const auto context = Parameter<Context>(Descriptor::kContext);
211 AsyncFunctionAwaitResumeClosure(context, sentError,
219 const auto context = Parameter<Context>(Descriptor::kContext);
221 AsyncFunctionAwaitResumeClosure(context, sentValue, JSGeneratorObject::kNext);
239 auto context = Parameter<Context>(Descriptor::kContext);
247 Await(context, async_function_object, value, outer_promise, on_resolve_sfi,