Lines Matching refs:slotValue

111         GateRef slotValue = GetValueFromTaggedArray(profileTypeInfo, slotId);
113 BRANCH(TaggedIsInt(slotValue), &compareLabel, &uninitialized);
116 GateRef oldTaggedSlotValue = ChangeTaggedPointerToInt64(slotValue);
124 BRANCH(TaggedIsUndefined(slotValue), &updateSlot, &exit);
158 GateRef slotValue = GetValueFromTaggedArray(profileTypeInfo, slotId);
159 Branch(TaggedIsHeapObject(slotValue), &isHeapObject, &exit);
161 Branch(IsProfileTypeInfoCell0(slotValue), &isProfileTypeInfoCell0, &exit);
164 GateRef handle = Load(VariableType::JS_ANY(), slotValue, handleOffset);
168 Store(VariableType::JS_POINTER(), glue, slotValue, handleOffset, weakCtor);
199 GateRef slotValue = GetValueFromTaggedArray(profileTypeInfo, slotId);
200 BRANCH(TaggedIsHeapObject(slotValue), &isHeapObject, &uninitialized);
203 BRANCH(TaggedIsWeak(slotValue), &isWeak, &updateSlot);
207 auto cachedHClass = LoadObjectFromWeakRef(slotValue);
214 BRANCH(TaggedIsUndefined(slotValue), &updateSlot, &exit);
274 GateRef slotValue = GetValueFromTaggedArray(profileTypeInfo, slotId);
275 BRANCH(TaggedIsHeapObject(slotValue), &isHeapObject, &uninitialized);
280 BRANCH(Int64Equal(slotValue, target), &exit, &change);
283 BRANCH(Int64Equal(ChangeTaggedPointerToInt64(slotValue), Int64(0)), &exit, &resetSlot);
298 BRANCH(TaggedIsUndefined(slotValue), &updateSlot, &exit);
384 GateRef slotValue = GetValueFromTaggedArray(profileTypeInfo, slotId);
385 BRANCH(TaggedIsHole(slotValue), &exit, &notOverflow); // hole -- slot is overflow
387 BRANCH(TaggedIsInt(slotValue), &updateSlot, &initSlot);
389 GateRef oldId = TaggedGetInt(slotValue);
586 GateRef slotValue = GetValueFromTaggedArray(profileTypeInfo, slotId);
587 BRANCH(TaggedIsHole(slotValue), &exit, &hasSlot); // ishole -- isundefined
591 BRANCH(TaggedIsInt(slotValue), &compareLabel, &uninitialized);
594 GateRef oldSlotValue = TaggedGetInt(slotValue);
613 BRANCH(TaggedIsUndefined(slotValue), &updateSlot, &exit);
751 GateRef slotValue = GetValueFromTaggedArray(profileTypeInfo, slotId);
752 BRANCH(TaggedIsHole(slotValue), &exit, &notOverflow); // hole -- slot is overflow
754 BRANCH(TaggedIsInt(slotValue), &updateSlot, &initSlot);
756 GateRef oldIterKind = TaggedGetInt(slotValue);