Lines Matching defs:slotId
82 uint32_t slotId = 2;
83 ICRuntime icRuntime(thread, handleProfileTypeInfo, slotId, ICKind::LoadIC);
85 EXPECT_TRUE(handleProfileTypeInfo->Get(slotId).IsTaggedArray());
86 EXPECT_TRUE(handleProfileTypeInfo->Get(slotId + 1).IsHole());
89 slotId = 0;
90 ICRuntime icRuntime1(thread, handleProfileTypeInfo, slotId, ICKind::NamedLoadIC);
92 EXPECT_TRUE(handleProfileTypeInfo->Get(slotId).IsTaggedArray());
93 EXPECT_TRUE(handleProfileTypeInfo->Get(slotId + 1).IsHole());
123 uint32_t slotId = 3;
126 handleOp1.SetIndex(slotId);
127 ICRuntime icRuntime(thread, handleProfileTypeInfo, slotId, ICKind::StoreIC);
130 EXPECT_TRUE(handleProfileTypeInfo->Get(slotId).IsWeak());
131 EXPECT_TRUE(handleProfileTypeInfo->Get(slotId + 1).IsPrototypeHandler());
133 slotId = 1;
137 handleOp2.SetIndex(slotId);
138 ICRuntime icRuntime1(thread, handleProfileTypeInfo, slotId, ICKind::NamedStoreIC);
141 EXPECT_TRUE(handleProfileTypeInfo->Get(slotId).IsWeak());
142 EXPECT_TRUE(handleProfileTypeInfo->Get(slotId + 1).IsTransitionHandler());