Searched refs:LoadMiss (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ic/tests/ |
H A D | ic_runtime_test.cpp | 190 HWTEST_F_L0(ICRunTimeTest, LoadMiss) in HWTEST_F_L0() 207 EXPECT_EQ(loadICRuntime.LoadMiss(handleReceiver, handleKeyWithString), handleValueWithElement.GetTaggedValue()); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ic/ |
H A D | ic_runtime.h | 77 JSTaggedValue LoadMiss(JSHandle<JSTaggedValue> receiver, JSHandle<JSTaggedValue> key);
|
H A D | ic_runtime_stub.h | 84 static inline JSTaggedValue LoadMiss(JSThread *thread, ProfileTypeInfo *profileTypeInfo, JSTaggedValue receiver,
|
H A D | ic_runtime_stub-inl.h | 52 return LoadMiss(thread, profileTypeInfo, globalValue, key, slotId, kind); in LoadGlobalICByName() 114 return LoadMiss(thread, profileTypeInfo, receiver, key, slotId, ICKind::NamedLoadIC); in LoadICByName() 647 JSTaggedValue ICRuntimeStub::LoadMiss(JSThread *thread, ProfileTypeInfo *profileTypeInfo, JSTaggedValue receiver, in LoadMiss() function in panda::ecmascript::ICRuntimeStub 655 return icRuntime.LoadMiss(receiverHandle, keyHandle); in LoadMiss()
|
H A D | ic_runtime.cpp | 225 JSTaggedValue LoadICRuntime::LoadMiss(JSHandle<JSTaggedValue> receiver, JSHandle<JSTaggedValue> key) in LoadMiss() function in panda::ecmascript::LoadICRuntime
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
H A D | runtime_stub_list.h | 345 V(LoadMiss) \
|
H A D | runtime_stubs.cpp | 1638 return icRuntime.LoadMiss(receiverHandle, keyHandle).GetRawData(); in DEF_RUNTIME_STUBS() 1658 return icRuntime.LoadMiss(globalObj, keyHandle).GetRawData(); in DEF_RUNTIME_STUBS() 2083 DEF_RUNTIME_STUBS(LoadMiss) in DEF_RUNTIME_STUBS() 2085 RUNTIME_STUBS_HEADER(LoadMiss); in DEF_RUNTIME_STUBS() 2091 return ICRuntimeStub::LoadMiss(thread, reinterpret_cast<ProfileTypeInfo *>(profileTypeInfo), receiver, key, in DEF_RUNTIME_STUBS() 2136 return icRuntime.LoadMiss(global, prop).GetRawData(); in DEF_RUNTIME_STUBS()
|
Completed in 13 milliseconds