Home
last modified time | relevance | path

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

/arkcompiler/ets_frontend/es2panda/compiler/function/
DasyncGeneratorFunctionBuilder.cpp66 pg_->AsyncGeneratorResolve(node, funcObj_, retVal, canSuspend); in DirectReturn()
91 pg_->AsyncGeneratorResolve(node, funcObj_, resumeValue, canSuspend); in ExplicitReturn()
DfunctionBuilder.cpp90 pg_->AsyncGeneratorResolve(node, funcObj_, value, done); in AsyncYield()
/arkcompiler/ets_runtime/ecmascript/
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()
Djs_async_generator_object.h81 …static JSTaggedValue AsyncGeneratorResolve(JSThread *thread, const JSHandle<JSAsyncGeneratorObject…
Druntime_call_id.h235 V(AsyncGeneratorResolve) \
/arkcompiler/ets_frontend/ets2panda/compiler/function/
DasyncGeneratorFunctionBuilder.cpp46 pg_->AsyncGeneratorResolve(node, funcObj_); in DirectReturn()
/arkcompiler/ets_frontend/ets2panda/compiler/core/
Dpandagen.h175 void AsyncGeneratorResolve(const ir::AstNode *node, VReg asyncGenObj);
Dpandagen.cpp1244 void PandaGen::AsyncGeneratorResolve(const ir::AstNode *node, VReg asyncGenObj) in AsyncGeneratorResolve() function in panda::es2panda::compiler::PandaGen
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dslow_runtime_stub.h181 static JSTaggedValue AsyncGeneratorResolve(JSThread *thread, JSTaggedValue asyncFuncObj,
Dslow_runtime_stub.cpp1175 JSTaggedValue SlowRuntimeStub::AsyncGeneratorResolve(JSThread *thread, JSTaggedValue asyncFuncObj, in AsyncGeneratorResolve() function in panda::ecmascript::SlowRuntimeStub
1178 INTERPRETER_TRACE(thread, AsyncGeneratorResolve); in AsyncGeneratorResolve()
Dinterpreter-inl.h3163 … JSTaggedValue res = SlowRuntimeStub::AsyncGeneratorResolve(thread, asyncGenerator, value, flag); in RunInternal()
Dinterpreter_assembly.cpp2761 JSTaggedValue res = SlowRuntimeStub::AsyncGeneratorResolve(thread, asyncGenerator, value, flag); in HandleAsyncgeneratorresolveV8V8V8()
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dpandagen.h410 …void AsyncGeneratorResolve(const ir::AstNode *node, VReg asyncGenObj, VReg value, VReg canSuspend);
Dpandagen.cpp1525 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.h324 V(AsyncGeneratorResolve) \
Druntime_stubs-inl.h376 …return JSAsyncGeneratorObject::AsyncGeneratorResolve(thread, asyncGeneratorObjHandle, valueHandle,… in RuntimeAsyncGeneratorResolve()
2590 …return JSAsyncGeneratorObject::AsyncGeneratorResolve(thread, asyncGeneratorObjHandle, valueHandle,… in RuntimeOptAsyncGeneratorResolve()
Druntime_stubs.cpp1022 DEF_RUNTIME_STUBS(AsyncGeneratorResolve) in DEF_RUNTIME_STUBS() argument
1024 RUNTIME_STUBS_HEADER(AsyncGeneratorResolve); in DEF_RUNTIME_STUBS()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dinterpreter_stub.cpp3038 GateRef res = CallRuntime(glue, RTSTUB_ID(AsyncGeneratorResolve), in DECLARE_ASM_HANDLER()