Lines Matching defs:slotId
40 JSTaggedValue globalValue, JSTaggedValue key, uint32_t slotId,
44 JSTaggedValue handler = profileTypeInfo->Get(slotId);
52 return LoadMiss(thread, profileTypeInfo, globalValue, key, slotId, kind);
57 JSTaggedValue value, uint32_t slotId, bool tryStore)
60 JSTaggedValue handler = profileTypeInfo->Get(slotId);
68 return StoreMiss(thread, profileTypeInfo, globalValue, key, value, slotId, kind);
111 JSTaggedValue receiver, JSTaggedValue key, uint32_t slotId)
114 return LoadMiss(thread, profileTypeInfo, receiver, key, slotId, ICKind::NamedLoadIC);
149 JSTaggedValue receiver, JSTaggedValue key, uint32_t slotId)
152 return LoadValueMiss(thread, profileTypeInfo, receiver, key, slotId, ICKind::LoadIC);
179 JSTaggedValue value, uint32_t slotId)
182 return StoreMiss(thread, profileTypeInfo, receiver, key, value, slotId, ICKind::StoreIC);
187 JSTaggedValue value, uint32_t slotId)
190 return StoreMiss(thread, profileTypeInfo, receiver, key, value, slotId, ICKind::StoreIC, true);
213 JSTaggedValue value, uint32_t slotId)
216 return StoreMiss(thread, profileTypeInfo, receiver, key, value, slotId, ICKind::NamedStoreIC);
648 JSTaggedValue key, uint32_t slotId, ICKind kind)
654 LoadICRuntime icRuntime(thread, JSHandle<ProfileTypeInfo>::Cast(profileInfoHandle), slotId, kind);
659 JSTaggedValue key, uint32_t slotId, ICKind kind)
665 LoadICRuntime icRuntime(thread, JSHandle<ProfileTypeInfo>::Cast(profileInfoHandle), slotId, kind);
670 JSTaggedValue key, JSTaggedValue value, uint32_t slotId, ICKind kind, bool isOwn)
677 StoreICRuntime icRuntime(thread, JSHandle<ProfileTypeInfo>::Cast(profileInfoHandle), slotId, kind);