Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/interpreter/
Dslow_runtime_stub.h108 static JSTaggedValue CopyDataProperties(JSThread *thread, JSTaggedValue dst, JSTaggedValue src);
Dslow_runtime_stub.cpp736 JSTaggedValue SlowRuntimeStub::CopyDataProperties(JSThread *thread, JSTaggedValue dst, JSTaggedValu… in CopyDataProperties() function in panda::ecmascript::SlowRuntimeStub
738 INTERPRETER_TRACE(thread, CopyDataProperties); in CopyDataProperties()
Dinterpreter-inl.h5192 JSTaggedValue res = SlowRuntimeStub::CopyDataProperties(thread, dst, src); in RunInternal()
5205 JSTaggedValue res = SlowRuntimeStub::CopyDataProperties(thread, dst, src); in RunInternal()
Dinterpreter_assembly.cpp2037 JSTaggedValue res = SlowRuntimeStub::CopyDataProperties(thread, dst, src); in HandleCopydatapropertiesV8()
4354 JSTaggedValue res = SlowRuntimeStub::CopyDataProperties(thread, dst, src); in HandleDeprecatedCopydatapropertiesPrefV8V8()
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dpandagen.h410 void CopyDataProperties(const ir::AstNode *node, VReg dst);
Dpandagen.cpp1501 void PandaGen::CopyDataProperties(const ir::AstNode *node, VReg dst) in CopyDataProperties() function in panda::es2panda::compiler::PandaGen
/arkcompiler/ets_frontend/es2panda/ir/expressions/
DobjectExpression.cpp357 pg->CopyDataProperties(spread, objReg); in CompileRemainingProperties()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs.h186 V(CopyDataProperties) \
Druntime_stubs.cpp684 DEF_RUNTIME_STUBS(CopyDataProperties) in DEF_RUNTIME_STUBS() argument
686 RUNTIME_STUBS_HEADER(CopyDataProperties); in DEF_RUNTIME_STUBS()
/arkcompiler/ets_runtime/ecmascript/
Druntime_call_id.h182 V(CopyDataProperties) \
/arkcompiler/ets_runtime/ecmascript/compiler/
Dinterpreter_stub.cpp1260 GateRef result = CallRuntime(glue, RTSTUB_ID(CopyDataProperties), { dst, src }); in DECLARE_ASM_HANDLER()
1268 GateRef result = CallRuntime(glue, RTSTUB_ID(CopyDataProperties), { dst, src }); in DECLARE_ASM_HANDLER()
Dslowpath_lowering.cpp1787 const int id = RTSTUB_ID(CopyDataProperties); in LowerCopyDataProperties()