Lines Matching refs:slotValue
1807 // The caller should ensure that the IC slot for LoadTrackInfo is valid (slotId is not 0xff or slotValue is not Hole).
1809 GateRef profileTypeInfo, GateRef slotId, GateRef slotValue, GateRef arrayLiteral, ProfileOperation callback)
1819 BRANCH(TaggedIsHeapObject(slotValue), &fastpath, &uninitialized);
1822 ret = slotValue;
1959 GateRef slotValue = GetValueFromTaggedArray(profileTypeInfo, slotId);
1960 BRANCH(TaggedIsHole(slotValue), &slowpath, &mayFastpath);
1964 slotId, slotValue, Circuit::NullGate(), callback);
2004 GateRef slotValue = GetValueFromTaggedArray(profileTypeInfo, slotId);
2005 BRANCH(TaggedIsHole(slotValue), &slowpath, &mayFastpath);
2008 trackInfo = LoadTrackInfo(glue, jsFunc, traceIdInfo, profileTypeInfo, slotId, slotValue, obj, callback);