Home
last modified time | relevance | path

Searched refs:CreateAsyncGeneratorObj (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/ets_frontend/es2panda/compiler/function/
DasyncGeneratorFunctionBuilder.cpp30 pg_->CreateAsyncGeneratorObj(node, callee); in Prepare()
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dslow_runtime_stub.h178 static JSTaggedValue CreateAsyncGeneratorObj(JSThread *thread, JSTaggedValue genFunc);
Dslow_runtime_stub.cpp438 JSTaggedValue SlowRuntimeStub::CreateAsyncGeneratorObj(JSThread *thread, JSTaggedValue genFunc) in CreateAsyncGeneratorObj() function in panda::ecmascript::SlowRuntimeStub
440 INTERPRETER_TRACE(thread, CreateAsyncGeneratorObj); in CreateAsyncGeneratorObj()
Dinterpreter-inl.h3087 JSTaggedValue res = SlowRuntimeStub::CreateAsyncGeneratorObj(thread, genFunc); in RunInternal()
Dinterpreter_assembly.cpp2705 JSTaggedValue res = SlowRuntimeStub::CreateAsyncGeneratorObj(thread, genFunc); in HandleCreateasyncgeneratorobjV8()
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dpandagen.h394 void CreateAsyncGeneratorObj(const ir::AstNode *node, VReg funcObj);
Dpandagen.cpp1384 void PandaGen::CreateAsyncGeneratorObj(const ir::AstNode *node, VReg funcObj) in CreateAsyncGeneratorObj() function in panda::es2panda::compiler::PandaGen
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs.h273 V(CreateAsyncGeneratorObj) \
Druntime_stubs.cpp563 DEF_RUNTIME_STUBS(CreateAsyncGeneratorObj) in DEF_RUNTIME_STUBS() argument
565 RUNTIME_STUBS_HEADER(CreateAsyncGeneratorObj); in DEF_RUNTIME_STUBS()
/arkcompiler/ets_runtime/ecmascript/
Druntime_call_id.h223 V(CreateAsyncGeneratorObj) \
/arkcompiler/ets_runtime/ecmascript/compiler/
Dslowpath_lowering.cpp2306 int id = RTSTUB_ID(CreateAsyncGeneratorObj); in LowerCreateAsyncGeneratorObj()
Dinterpreter_stub.cpp2816 GateRef result = CallRuntime(glue, RTSTUB_ID(CreateAsyncGeneratorObj), { genFunc }); in DECLARE_ASM_HANDLER()