Lines Matching refs:secondValue

450             JSTaggedValue secondValue = profileTypeInfo_->Get(slotId + 1);
452 ConvertICByNameWithHandler(abcId_, bcOffset, hclass, secondValue, type, slotId + 1);
461 JSTaggedValue secondValue, BCType type, uint32_t slotId)
464 HandleLoadType(abcId, bcOffset, hclass, secondValue, slotId);
468 HandleOtherTypes(abcId, bcOffset, hclass, secondValue, slotId);
472 JSHClass *hclass, JSTaggedValue &secondValue, uint32_t slotId)
474 if (secondValue.IsInt()) {
475 HandleLoadTypeInt(abcId, bcOffset, hclass, secondValue);
476 } else if (secondValue.IsPrototypeHandler()) {
477 HandleLoadTypePrototypeHandler(abcId, bcOffset, hclass, secondValue, slotId);
482 JSHClass *hclass, JSTaggedValue &secondValue)
484 auto handlerInfo = static_cast<uint32_t>(secondValue.GetInt());
497 JSHClass *hclass, JSTaggedValue &secondValue, uint32_t slotId)
499 auto prototypeHandler = PrototypeHandler::Cast(secondValue.GetTaggedObject());
535 JSHClass *hclass, JSTaggedValue &secondValue, uint32_t slotId)
537 if (secondValue.IsInt()) {
539 } else if (secondValue.IsTransitionHandler()) {
540 HandleTransitionHandler(abcId, bcOffset, hclass, secondValue);
541 } else if (secondValue.IsTransWithProtoHandler()) {
542 HandleTransWithProtoHandler(abcId, bcOffset, hclass, secondValue);
543 } else if (secondValue.IsPrototypeHandler()) {
544 HandleOtherTypesPrototypeHandler(abcId, bcOffset, hclass, secondValue, slotId);
545 } else if (secondValue.IsPropertyBox()) {
547 } else if (secondValue.IsStoreTSHandler()) {
548 HandleStoreTSHandler(abcId, bcOffset, hclass, secondValue);
553 JSHClass *hclass, JSTaggedValue &secondValue)
555 auto transitionHandler = TransitionHandler::Cast(secondValue.GetTaggedObject());
564 JSHClass *hclass, JSTaggedValue &secondValue)
566 auto transWithProtoHandler = TransWithProtoHandler::Cast(secondValue.GetTaggedObject());
581 JSHClass *hclass, JSTaggedValue &secondValue, uint32_t slotId)
583 auto prototypeHandler = PrototypeHandler::Cast(secondValue.GetTaggedObject());
608 JSHClass *hclass, JSTaggedValue &secondValue)
610 StoreTSHandler *storeTSHandler = StoreTSHandler::Cast(secondValue.GetTaggedObject());
660 JSTaggedValue secondValue = profileTypeInfo_->Get(slotId + 1);
662 ConvertICByValueWithHandler(abcId_, bcOffset, hclass, secondValue, type);
675 JSHClass *hclass, JSTaggedValue secondValue,
679 if (secondValue.IsInt()) {
680 auto handlerInfo = static_cast<uint32_t>(secondValue.GetInt());
697 HandleStoreType(abcId, bcOffset, hclass, secondValue);
701 JSHClass *hclass, JSTaggedValue &secondValue)
703 if (secondValue.IsInt()) {
704 auto handlerInfo = static_cast<uint32_t>(secondValue.GetInt());
717 } else if (secondValue.IsTransitionHandler()) {
718 HandleTransition(abcId, bcOffset, hclass, secondValue);
719 } else if (secondValue.IsTransWithProtoHandler()) {
720 HandleTransWithProto(abcId, bcOffset, hclass, secondValue);
722 HandlePrototypeHandler(abcId, bcOffset, hclass, secondValue);
727 JSHClass *hclass, JSTaggedValue &secondValue)
729 auto transitionHandler = TransitionHandler::Cast(secondValue.GetTaggedObject());
747 JSHClass *hclass, JSTaggedValue &secondValue)
749 auto transWithProtoHandler = TransWithProtoHandler::Cast(secondValue.GetTaggedObject());
766 JSHClass *hclass, JSTaggedValue &secondValue)
768 ASSERT(secondValue.IsPrototypeHandler());
769 PrototypeHandler *prototypeHandler = PrototypeHandler::Cast(secondValue.GetTaggedObject());