Lines Matching refs:slotValue
321 JSTaggedValue slotValue = profileTypeInfo_->Get(slotId);
322 if (slotValue.IsInt()) {
323 auto type = slotValue.GetInt();
330 JSTaggedValue slotValue = profileTypeInfo_->Get(slotId);
334 if (slotValue.IsInt()) {
335 calleeMethodId = slotValue.GetInt();
342 } else if (slotValue.IsJSFunction()) {
343 JSFunction *callee = JSFunction::Cast(slotValue);
359 JSTaggedValue slotValue = profileTypeInfo_->Get(slotId);
362 if (slotValue.IsInt()) {
363 ctorMethodId = slotValue.GetInt();
368 } else if (slotValue.IsJSFunction()) {
369 JSFunction *callee = JSFunction::Cast(slotValue);
411 JSTaggedValue slotValue = profileTypeInfo_->Get(slotId);
412 if (!slotValue.IsHeapObject()) {
415 if (slotValue.IsWeak()) {
416 auto object = slotValue.GetWeakReferentUnChecked();
423 } else if (slotValue.IsTrackInfoObject()) {
424 TrackInfo *trackInfo = TrackInfo::Cast(slotValue.GetTaggedObject());