/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | common_stub_csigns.h | 52 V(SetPropertyByName) \
|
H A D | access_object_stub_builder.cpp | 149 result = SetPropertyByName(glue, receiver, propKey, value, false, True(), callback); in StoreObjByName() 193 result = SetPropertyByName(glue, receiver, key, value, false, True(), callback); in StorePrivatePropertyByName() 650 result = SetPropertyByName(glue, receiver, key, value, true, True()); in StOwnByName() 730 result = SetPropertyByName(glue, receiver, key, value, true, True(), ProfileOperation(), false, true); in StOwnByNameWithNameSet()
|
H A D | call_signature.h | 390 V(SetPropertyByName) \
|
H A D | common_stubs.cpp | 503 Return(SetPropertyByName(glue, receiver, key, value, false, True())); in GenerateCircuit() 512 Return(SetPropertyByName(glue, receiver, key, value, true, True())); in GenerateCircuit()
|
H A D | interpreter_stub.cpp | 2253 result = SetPropertyByName(glue, receiver, propKey, acc, true, True(), callback);
in DECLARE_ASM_HANDLER() 2291 result = SetPropertyByName(glue, receiver, propKey, acc, true, True(), callback);
in DECLARE_ASM_HANDLER() 2329 GateRef res = SetPropertyByName(glue, receiver, propKey, acc, true, True(), callback, false, true);
in DECLARE_ASM_HANDLER() 2371 GateRef res = SetPropertyByName(glue, receiver, propKey, acc, true, True(), callback, false, true);
in DECLARE_ASM_HANDLER()
|
H A D | call_signature.cpp | 224 DEF_CALL_SIGNATURE(SetPropertyByName) in DEF_CALL_SIGNATURE() 227 CallSignature setPropertyByName("SetPropertyByName", 0, 6, ArgumentsOrder::DEFAULT_ORDER, VariableType::JS_ANY()); in DEF_CALL_SIGNATURE()
|
H A D | stub_builder.h | 759 GateRef SetPropertyByName(GateRef glue, GateRef receiver, GateRef key,
|
H A D | stub_builder.cpp | 4599 GateRef StubBuilder::SetPropertyByName(GateRef glue, GateRef receiver, GateRef key, GateRef value, in SetPropertyByName() function in panda::ecmascript::kungfu::StubBuilder 5235 result = SetPropertyByName(glue, receiver, *varKey, value, useOwn, *isInternal, in SetPropertyByValue() 5832 result = SetPropertyByName(glue, obj, *keyVar, value, false, *isInternal, callback, true); in FastSetPropertyByName()
|
H A D | slowpath_lowering.cpp | 2442 LowerCallStubWithIC(gate, CommonStubCSigns::SetPropertyByName, { receiver, stringId, value }); in LowerStObjByName()
|
/arkcompiler/ets_runtime/ecmascript/interpreter/ |
H A D | fast_runtime_stub.h | 46 static inline JSTaggedValue SetPropertyByName(JSThread *thread, JSTaggedValue receiver, JSTaggedValue key,
|
H A D | fast_runtime_stub-inl.h | 192 JSTaggedValue FastRuntimeStub::SetPropertyByName(JSThread *thread, JSTaggedValue receiver, JSTaggedValue key, in SetPropertyByName() function in panda::ecmascript::FastRuntimeStub 196 return ObjectFastOperator::SetPropertyByName<status>(thread, receiver, key, value); in SetPropertyByName()
|
H A D | interpreter-inl.cpp | 2360 JSTaggedValue res = FastRuntimeStub::SetPropertyByName<ObjectFastOperator::Status::UseOwn> in RunInternal() 2397 JSTaggedValue res = FastRuntimeStub::SetPropertyByName<ObjectFastOperator::Status::UseOwn> in RunInternal() 2871 JSTaggedValue res = FastRuntimeStub::SetPropertyByName<ObjectFastOperator::Status::DefineSemantics> in RunInternal() 2979 JSTaggedValue res = FastRuntimeStub::SetPropertyByName(thread, receiver, propKey, value); in RunInternal() 3051 JSTaggedValue res = FastRuntimeStub::SetPropertyByName(thread, receiver, propKey, value); in RunInternal() 6777 JSTaggedValue res = FastRuntimeStub::SetPropertyByName<ObjectFastOperator::Status::DefineSemantics> in RunInternal() 7317 JSTaggedValue res = FastRuntimeStub::SetPropertyByName(thread, receiver, propKey, value); in RunInternal() 7389 JSTaggedValue res = FastRuntimeStub::SetPropertyByName(thread, receiver, propKey, value); in RunInternal()
|
H A D | interpreter_assembly.cpp | 1945 JSTaggedValue res = FastRuntimeStub::SetPropertyByName<ObjectFastOperator::Status::UseOwn> 2507 JSTaggedValue res = FastRuntimeStub::SetPropertyByName<ObjectFastOperator::Status::UseOwn> 2628 JSTaggedValue res = FastRuntimeStub::SetPropertyByName(thread, receiver, propKey, value); 5075 JSTaggedValue res = FastRuntimeStub::SetPropertyByName<ObjectFastOperator::Status::UseOwn> 5313 JSTaggedValue res = FastRuntimeStub::SetPropertyByName<ObjectFastOperator::Status::UseOwn> 5389 JSTaggedValue res = FastRuntimeStub::SetPropertyByName(thread, receiver, propKey, value); 6414 JSTaggedValue res = FastRuntimeStub::SetPropertyByName(thread, receiver, propKey, value); 6486 JSTaggedValue res = FastRuntimeStub::SetPropertyByName(thread, receiver, propKey, value);
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | object_fast_operator.h | 79 static inline JSTaggedValue SetPropertyByName(JSThread *thread, JSTaggedValue receiver, JSTaggedValue key,
|
H A D | object_fast_operator-inl.h | 409 JSTaggedValue ObjectFastOperator::SetPropertyByName(JSThread *thread, JSTaggedValue receiver, JSTaggedValue key, in SetPropertyByName() function in ObjectFastOperator 412 INTERPRETER_TRACE(thread, SetPropertyByName); in SetPropertyByName() 770 return ObjectFastOperator::SetPropertyByName<status>(thread, receiver, key, value, sCheckMode); in SetPropertyByValue()
|
H A D | runtime_call_id.h | 233 V(SetPropertyByName) \
|
/arkcompiler/ets_runtime/ecmascript/base/ |
H A D | json_parser.cpp | 507 return ObjectFastOperator::SetPropertyByName<ObjectFastOperator::Status::UseOwn>(thread_, in SetPropertyByValue()
|
/arkcompiler/ets_runtime/ecmascript/compiler/baseline/ |
H A D | baseline_stubs.cpp | 2944 result = SetPropertyByName(glue, receiver, propKey, acc, true, True(), callback); in GenerateCircuit() 2990 result = SetPropertyByName(glue, receiver, propKey, acc, true, True(), callback); in GenerateCircuit() 3226 GateRef res = SetPropertyByName(glue, receiver, propKey, acc, true, True(), callback); in GenerateCircuit() 3277 GateRef res = SetPropertyByName(glue, receiver, propKey, acc, true, True(), callback); in GenerateCircuit()
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
H A D | jsnapi_expo.cpp | 2625 res = ObjectFastOperator::SetPropertyByName(thread, obj.GetTaggedValue(), keyValue.GetTaggedValue(), in Set()
|