Home
last modified time | relevance | path

Searched refs:CreateGeneratorObj (Results 1 – 13 of 13) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/tests/
Djs_generator_object_test.cpp74 … SlowRuntimeStub::CreateGeneratorObj(thread, env->GetGeneratorFunctionFunction().GetTaggedValue()); in HWTEST_F_L0()
111 … SlowRuntimeStub::CreateGeneratorObj(thread, env->GetGeneratorFunctionFunction().GetTaggedValue()); in HWTEST_F_L0()
137 … SlowRuntimeStub::CreateGeneratorObj(thread, env->GetGeneratorFunctionFunction().GetTaggedValue()); in HWTEST_F_L0()
/arkcompiler/ets_frontend/es2panda/compiler/function/
DgeneratorFunctionBuilder.cpp30 pg_->CreateGeneratorObj(node, callee); in Prepare()
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dslow_runtime_stub.h76 static JSTaggedValue CreateGeneratorObj(JSThread *thread, JSTaggedValue genFunc);
Dslow_runtime_stub.cpp429 JSTaggedValue SlowRuntimeStub::CreateGeneratorObj(JSThread *thread, JSTaggedValue genFunc) in CreateGeneratorObj() function in panda::ecmascript::SlowRuntimeStub
431 INTERPRETER_TRACE(thread, CreateGeneratorObj); in CreateGeneratorObj()
Dinterpreter-inl.h3055 JSTaggedValue res = SlowRuntimeStub::CreateGeneratorObj(thread, genFunc); in RunInternal()
Dinterpreter_assembly.cpp2690 JSTaggedValue res = SlowRuntimeStub::CreateGeneratorObj(thread, genFunc); in HandleCreategeneratorobjV8()
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dpandagen.h383 void CreateGeneratorObj(const ir::AstNode *node, VReg funcObj);
Dpandagen.cpp1379 void PandaGen::CreateGeneratorObj(const ir::AstNode *node, VReg funcObj) in CreateGeneratorObj() function in panda::es2panda::compiler::PandaGen
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs.h171 V(CreateGeneratorObj) \
Druntime_stubs.cpp557 DEF_RUNTIME_STUBS(CreateGeneratorObj) in DEF_RUNTIME_STUBS() argument
559 RUNTIME_STUBS_HEADER(CreateGeneratorObj); in DEF_RUNTIME_STUBS()
/arkcompiler/ets_runtime/ecmascript/
Druntime_call_id.h106 V(CreateGeneratorObj) \
/arkcompiler/ets_runtime/ecmascript/compiler/
Dslowpath_lowering.cpp2297 const int id = RTSTUB_ID(CreateGeneratorObj); in LowerCreateGeneratorObj()
Dinterpreter_stub.cpp1068 GateRef result = CallRuntime(glue, RTSTUB_ID(CreateGeneratorObj), { genFunc }); in DECLARE_ASM_HANDLER()