/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | common_stub_csigns.h | 50 V(GetPropertyByName) \
|
H A D | access_object_stub_builder.cpp | 43 result = GetPropertyByName(glue, receiver, propKey, callback, True()); in LoadObjByName() 82 result = GetPropertyByName(glue, receiver, key, callback, True()); in LoadPrivatePropertyByName() 115 result = GetPropertyByName(glue, receiver, propKey, ProfileOperation(), True()); in DeprecatedLoadObjByName()
|
H A D | call_signature.h | 407 V(GetPropertyByName) \
|
H A D | call_signature.cpp | 395 DEF_CALL_SIGNATURE(GetPropertyByName) in DEF_CALL_SIGNATURE() 398 CallSignature getPropertyByName("GetPropertyByName", 0, 5, ArgumentsOrder::DEFAULT_ORDER, VariableType::JS_ANY()); in DEF_CALL_SIGNATURE()
|
H A D | stub_builder.h | 747 GateRef GetPropertyByName(GateRef glue, GateRef receiver, GateRef key,
|
H A D | slowpath_lowering.cpp | 2425 LowerCallStubWithIC(gate, CommonStubCSigns::GetPropertyByName, { receiver, stringId }); in LowerLdObjByName() 3313 LowerCallStubWithIC(gate, CommonStubCSigns::GetPropertyByName, { thisObj, prop }); in LowerLdThisByName()
|
H A D | stub_builder.cpp | 3516 result = GetPropertyByName(glue, receiver, *key, callback, *isInternal, true); in GetPropertyByValue() 3527 GateRef StubBuilder::GetPropertyByName(GateRef glue, GateRef receiver, GateRef key, in GetPropertyByName() function in panda::ecmascript::kungfu::StubBuilder 5742 result = GetPropertyByName(glue, obj, key, callback, True()); in FastGetPropertyByName()
|
H A D | typed_hcr_lowering.cpp | 2867 constructorPrototype = builder_.CallRuntime(glue, RTSTUB_ID(GetPropertyByName), Gate::InvalidGateRef, in LowerOrdinaryHasInstance()
|
/arkcompiler/ets_runtime/ecmascript/interpreter/ |
H A D | fast_runtime_stub.h | 40 static inline JSTaggedValue GetPropertyByName(JSThread *thread, JSTaggedValue receiver, JSTaggedValue key);
|
H A D | fast_runtime_stub-inl.h | 186 JSTaggedValue FastRuntimeStub::GetPropertyByName(JSThread *thread, JSTaggedValue receiver, JSTaggedValue key) in GetPropertyByName() function in panda::ecmascript::FastRuntimeStub 188 return ObjectFastOperator::GetPropertyByName<status>(thread, receiver, key); in GetPropertyByName()
|
H A D | interpreter-inl.cpp | 6360 JSTaggedValue res = FastRuntimeStub::GetPropertyByName(thread, receiver, propKey); in RunInternal() 6423 JSTaggedValue res = FastRuntimeStub::GetPropertyByName(thread, receiver, propKey); in RunInternal() 6452 JSTaggedValue res = FastRuntimeStub::GetPropertyByName(thread, receiver, propKey); in RunInternal() 7193 JSTaggedValue res = FastRuntimeStub::GetPropertyByName(thread, receiver, propKey); in RunInternal() 7251 JSTaggedValue res = FastRuntimeStub::GetPropertyByName(thread, receiver, propKey); in RunInternal()
|
H A D | interpreter_assembly.cpp | 4162 JSTaggedValue res = FastRuntimeStub::GetPropertyByName(thread, receiver, propKey); 5461 JSTaggedValue res = FastRuntimeStub::GetPropertyByName(thread, receiver, propKey); 5528 JSTaggedValue res = FastRuntimeStub::GetPropertyByName(thread, receiver, propKey); 6552 JSTaggedValue res = FastRuntimeStub::GetPropertyByName(thread, receiver, propKey); 6613 JSTaggedValue res = FastRuntimeStub::GetPropertyByName(thread, receiver, propKey);
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | object_fast_operator.h | 70 static inline JSTaggedValue GetPropertyByName(JSThread *thread, JSTaggedValue receiver,
|
H A D | object_fast_operator-inl.h | 199 return ObjectFastOperator::GetPropertyByName<status>(thread, receiver, key); in TryFastGetPropertyByValue() 252 JSTaggedValue ObjectFastOperator::GetPropertyByName(JSThread *thread, JSTaggedValue receiver, in GetPropertyByName() function in ObjectFastOperator 256 INTERPRETER_TRACE(thread, GetPropertyByName); in GetPropertyByName() 737 return ObjectFastOperator::GetPropertyByName<status>(thread, receiver, key); in GetPropertyByValue() 812 JSTaggedValue result = ObjectFastOperator::GetPropertyByName<Status::GetInternal>(thread, receiver, key); in FastGetPropertyByName()
|
H A D | runtime_call_id.h | 140 V(GetPropertyByName) \
|
H A D | js_object.cpp | 2410 JSTaggedValue objConstructor = ObjectFastOperator::GetPropertyByName(thread, JSTaggedValue(obj), in ExtractConstructorAndRecordName()
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
H A D | runtime_stub_list.h | 418 V(GetPropertyByName) \
|
H A D | runtime_stubs.cpp | 2795 DEF_RUNTIME_STUBS(GetPropertyByName) in DEF_RUNTIME_STUBS() 2797 RUNTIME_STUBS_HEADER(GetPropertyByName); in DEF_RUNTIME_STUBS()
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
H A D | builtins_lazy_test.cpp | 335 auto function = FastRuntimeStub::GetPropertyByName(thread, intlObj, key); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/containers/ |
H A D | containers_private.cpp | 152 JSTaggedValue value = ObjectFastOperator::GetPropertyByName<ObjectFastOperator::Status::UseOwn> in InitializeContainer()
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
H A D | jsnapi_expo.cpp | 5806 res = ObjectFastOperator::GetPropertyByName(thread, obj.GetTaggedValue(), keyValue.GetTaggedValue()); in NapiGetNamedProperty()
|