Home
last modified time | relevance | path

Searched refs:AsyncGeneratorResolve (Results 1 – 15 of 15) sorted by relevance

/arkcompiler/ets_frontend/es2panda/compiler/function/
DasyncGeneratorFunctionBuilder.cpp66 pg_->AsyncGeneratorResolve(node, funcObj_, retVal, canSuspend); in DirectReturn()
89 pg_->AsyncGeneratorResolve(node, funcObj_, resumeValue, canSuspend); in ExplicitReturn()
DfunctionBuilder.cpp87 pg_->AsyncGeneratorResolve(node, funcObj_, value, done); in AsyncYield()
/arkcompiler/ets_runtime/ecmascript/
Djs_async_generator_object.h81 …static JSTaggedValue AsyncGeneratorResolve(JSThread *thread, const JSHandle<JSAsyncGeneratorObject…
Djs_async_generator_object.cpp55 JSTaggedValue JSAsyncGeneratorObject::AsyncGeneratorResolve(JSThread *thread, in AsyncGeneratorResolve() function in panda::ecmascript::JSAsyncGeneratorObject
214 return AsyncGeneratorResolve(thread, generator, comVal, true); in AsyncGeneratorResumeNext()
351 return AsyncGeneratorResolve(thread, asyncGen, value, true); in ProcessorFulfilledFunc()
Druntime_call_id.h224 V(AsyncGeneratorResolve) \
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dslow_runtime_stub.h174 static JSTaggedValue AsyncGeneratorResolve(JSThread *thread, JSTaggedValue asyncFuncObj,
Dslow_runtime_stub.cpp1142 JSTaggedValue SlowRuntimeStub::AsyncGeneratorResolve(JSThread *thread, JSTaggedValue asyncFuncObj, in AsyncGeneratorResolve() function in panda::ecmascript::SlowRuntimeStub
1145 INTERPRETER_TRACE(thread, AsyncGeneratorResolve); in AsyncGeneratorResolve()
Dinterpreter-inl.h3112 … JSTaggedValue res = SlowRuntimeStub::AsyncGeneratorResolve(thread, asyncGenerator, value, flag); in RunInternal()
Dinterpreter_assembly.cpp2724 JSTaggedValue res = SlowRuntimeStub::AsyncGeneratorResolve(thread, asyncGenerator, value, flag); in HandleAsyncgeneratorresolveV8V8V8()
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dpandagen.h399 …void AsyncGeneratorResolve(const ir::AstNode *node, VReg asyncGenObj, VReg value, VReg canSuspend);
Dpandagen.cpp1451 void PandaGen::AsyncGeneratorResolve(const ir::AstNode *node, VReg asyncGenObj, VReg value, VReg ca… in AsyncGeneratorResolve() function in panda::es2panda::compiler::PandaGen
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs.h274 V(AsyncGeneratorResolve) \
Druntime_stubs.cpp659 DEF_RUNTIME_STUBS(AsyncGeneratorResolve) in DEF_RUNTIME_STUBS() argument
661 RUNTIME_STUBS_HEADER(AsyncGeneratorResolve); in DEF_RUNTIME_STUBS()
Druntime_stubs-inl.h371 …return JSAsyncGeneratorObject::AsyncGeneratorResolve(thread, asyncGeneratorObjHandle, valueHandle,… in RuntimeAsyncGeneratorResolve()
2314 …return JSAsyncGeneratorObject::AsyncGeneratorResolve(thread, asyncGeneratorObjHandle, valueHandle,… in RuntimeOptAsyncGeneratorResolve()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dinterpreter_stub.cpp2852 GateRef res = CallRuntime(glue, RTSTUB_ID(AsyncGeneratorResolve), in DECLARE_ASM_HANDLER()