Lines Matching refs:OrigElt
568 const LLT OrigElt = OrigTy.getElementType(); in getLCMType() local
573 if (OrigElt.getSizeInBits() == TargetElt.getSizeInBits()) { in getLCMType()
581 if (OrigElt.getSizeInBits() == TargetSize) in getLCMType()
586 return LLT::vector(LCMSize / OrigElt.getSizeInBits(), OrigElt); in getLCMType()
613 LLT OrigElt = OrigTy.getElementType(); in getGCDType() local
616 if (OrigElt.getSizeInBits() == TargetElt.getSizeInBits()) { in getGCDType()
619 return LLT::scalarOrVector(GCD, OrigElt); in getGCDType()
623 if (OrigElt.getSizeInBits() == TargetSize) in getGCDType()
624 return OrigElt; in getGCDType()
628 if (GCD == OrigElt.getSizeInBits()) in getGCDType()
629 return OrigElt; in getGCDType()
633 if (GCD < OrigElt.getSizeInBits()) in getGCDType()
635 return LLT::vector(GCD / OrigElt.getSizeInBits(), OrigElt); in getGCDType()