Lines Matching refs:secondValue

981             JSTaggedValue secondValue = profileTypeInfo->Get(slotId + 1);
983 DumpICByNameWithHandler(abcId, recordName, methodId, bcOffset, hclass, secondValue, type);
1004 JSTaggedValue secondValue = profileTypeInfo->Get(slotId + 1);
1006 DumpICByValueWithHandler(abcId, recordName, methodId, bcOffset, hclass, secondValue, type);
1070 int32_t bcOffset, JSHClass *hclass, JSTaggedValue secondValue, BCType type)
1074 return DumpICLoadByNameWithHandler(abcId, recordName, methodId, bcOffset, hclass, secondValue);
1077 if (secondValue.IsInt()) {
1079 } else if (secondValue.IsTransitionHandler()) {
1080 auto transitionHandler = TransitionHandler::Cast(secondValue.GetTaggedObject());
1086 } else if (secondValue.IsTransWithProtoHandler()) {
1087 auto transWithProtoHandler = TransWithProtoHandler::Cast(secondValue.GetTaggedObject());
1097 } else if (secondValue.IsPrototypeHandler()) {
1098 auto prototypeHandler = PrototypeHandler::Cast(secondValue.GetTaggedObject());
1108 } else if (secondValue.IsStoreTSHandler()) {
1109 StoreTSHandler *storeTSHandler = StoreTSHandler::Cast(secondValue.GetTaggedObject());
1123 int32_t bcOffset, JSHClass *hclass, JSTaggedValue secondValue)
1126 if (secondValue.IsInt()) {
1127 auto handlerInfo = static_cast<uint32_t>(secondValue.GetInt());
1137 } else if (secondValue.IsPrototypeHandler()) {
1138 auto prototypeHandler = PrototypeHandler::Cast(secondValue.GetTaggedObject());
1165 int32_t bcOffset, JSHClass *hclass, JSTaggedValue secondValue, BCType type)
1169 if (secondValue.IsInt()) {
1170 auto handlerInfo = static_cast<uint32_t>(secondValue.GetInt());
1189 if (secondValue.IsInt()) {
1190 auto handlerInfo = static_cast<uint32_t>(secondValue.GetInt());
1205 } else if (secondValue.IsTransitionHandler()) {
1206 auto transitionHandler = TransitionHandler::Cast(secondValue.GetTaggedObject());
1221 } else if (secondValue.IsTransWithProtoHandler()) {
1222 auto transWithProtoHandler = TransWithProtoHandler::Cast(secondValue.GetTaggedObject());
1237 } else if (secondValue.IsPrototypeHandler()) {
1238 PrototypeHandler *prototypeHandler = PrototypeHandler::Cast(secondValue.GetTaggedObject());