Lines Matching defs:STyR
563 StructType *STyR = cast<StructType>(TyR);
564 if (STyL->getNumElements() != STyR->getNumElements())
565 return cmpNumbers(STyL->getNumElements(), STyR->getNumElements());
567 if (STyL->isPacked() != STyR->isPacked())
568 return cmpNumbers(STyL->isPacked(), STyR->isPacked());
571 if (int Res = cmpTypes(STyL->getElementType(i), STyR->getElementType(i)))
598 auto *STyR = cast<ArrayType>(TyR);
599 if (STyL->getNumElements() != STyR->getNumElements())
600 return cmpNumbers(STyL->getNumElements(), STyR->getNumElements());
601 return cmpTypes(STyL->getElementType(), STyR->getElementType());
606 auto *STyR = cast<VectorType>(TyR);
608 STyR->getElementCount().isScalable())
610 STyR->getElementCount().isScalable());
611 if (STyL->getElementCount() != STyR->getElementCount())
613 STyR->getElementCount().getKnownMinValue());
614 return cmpTypes(STyL->getElementType(), STyR->getElementType());