Lines Matching defs:STyR
577 StructType *STyR = cast<StructType>(TyR);
578 if (STyL->getNumElements() != STyR->getNumElements())
579 return cmpNumbers(STyL->getNumElements(), STyR->getNumElements());
581 if (STyL->isPacked() != STyR->isPacked())
582 return cmpNumbers(STyL->isPacked(), STyR->isPacked());
585 if (int Res = cmpTypes(STyL->getElementType(i), STyR->getElementType(i)))
612 auto *STyR = cast<ArrayType>(TyR);
613 if (STyL->getNumElements() != STyR->getNumElements())
614 return cmpNumbers(STyL->getNumElements(), STyR->getNumElements());
615 return cmpTypes(STyL->getElementType(), STyR->getElementType());
620 auto *STyR = cast<VectorType>(TyR);
622 STyR->getElementCount().isScalable())
624 STyR->getElementCount().isScalable());
625 if (STyL->getElementCount() != STyR->getElementCount())
627 STyR->getElementCount().getKnownMinValue());
628 return cmpTypes(STyL->getElementType(), STyR->getElementType());