Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/interpreter/
Dslow_runtime_stub.h103 … static JSTaggedValue SetObjectWithProto(JSThread *thread, JSTaggedValue proto, JSTaggedValue obj);
Dslow_runtime_stub.cpp632 JSTaggedValue SlowRuntimeStub::SetObjectWithProto(JSThread *thread, JSTaggedValue proto, JSTaggedVa… in SetObjectWithProto() function in panda::ecmascript::SlowRuntimeStub
634 INTERPRETER_TRACE(thread, SetObjectWithProto); in SetObjectWithProto()
Dinterpreter-inl.h5236 JSTaggedValue res = SlowRuntimeStub::SetObjectWithProto(thread, proto, obj); in RunInternal()
5249 JSTaggedValue res = SlowRuntimeStub::SetObjectWithProto(thread, proto, obj); in RunInternal()
5263 JSTaggedValue res = SlowRuntimeStub::SetObjectWithProto(thread, proto, obj); in RunInternal()
Dinterpreter_assembly.cpp1974 JSTaggedValue res = SlowRuntimeStub::SetObjectWithProto(thread, proto, obj); in HandleSetobjectwithprotoImm8V8()
3016 JSTaggedValue res = SlowRuntimeStub::SetObjectWithProto(thread, proto, obj); in HandleSetobjectwithprotoImm16V8()
4337 JSTaggedValue res = SlowRuntimeStub::SetObjectWithProto(thread, proto, obj); in HandleDeprecatedSetobjectwithprotoPrefV8V8()
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dpandagen.h409 void SetObjectWithProto(const ir::AstNode *node, VReg proto, VReg obj);
Dpandagen.cpp1495 void PandaGen::SetObjectWithProto(const ir::AstNode *node, VReg proto, VReg obj) in SetObjectWithProto() function in panda::es2panda::compiler::PandaGen
/arkcompiler/ets_frontend/es2panda/ir/expressions/
DobjectExpression.cpp415 pg->SetObjectWithProto(this, proto, objReg); in CompileRemainingProperties()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs.h189 V(SetObjectWithProto) \
Druntime_stubs.cpp710 DEF_RUNTIME_STUBS(SetObjectWithProto) in DEF_RUNTIME_STUBS() argument
712 RUNTIME_STUBS_HEADER(SetObjectWithProto); in DEF_RUNTIME_STUBS()
/arkcompiler/ets_runtime/ecmascript/
Druntime_call_id.h175 V(SetObjectWithProto) \
/arkcompiler/ets_runtime/ecmascript/compiler/
Dinterpreter_stub.cpp1290 GateRef result = CallRuntime(glue, RTSTUB_ID(SetObjectWithProto), { proto, obj }); in DECLARE_ASM_HANDLER()
1305 GateRef result = CallRuntime(glue, RTSTUB_ID(SetObjectWithProto), { proto, obj }); in DECLARE_ASM_HANDLER()
1319 GateRef result = CallRuntime(glue, RTSTUB_ID(SetObjectWithProto), { proto, obj }); in DECLARE_ASM_HANDLER()
Dslowpath_lowering.cpp1517 const int id = RTSTUB_ID(SetObjectWithProto); in LowerSetObjectWithProto()