Lines Matching refs:TyL
401 int cmpTypes(Type *TyL, Type *TyR) const;
601 Type *TyL = L->getType(); in cmpConstants() local
607 int TypesRes = cmpTypes(TyL, TyR); in cmpConstants()
610 if (!TyL->isFirstClassType()) { in cmpConstants()
618 if (TyL->isFirstClassType()) in cmpConstants()
628 if (auto *VecTyL = dyn_cast<VectorType>(TyL)) in cmpConstants()
638 PointerType *PTyL = dyn_cast<PointerType>(TyL); in cmpConstants()
702 uint64_t NumElementsL = cast<ArrayType>(TyL)->getNumElements(); in cmpConstants()
716 unsigned NumElementsL = cast<StructType>(TyL)->getNumElements(); in cmpConstants()
730 unsigned NumElementsL = cast<VectorType>(TyL)->getNumElements(); in cmpConstants()
803 int FunctionComparator::cmpTypes(Type *TyL, Type *TyR) const { in cmpTypes() argument
804 PointerType *PTyL = dyn_cast<PointerType>(TyL); in cmpTypes()
809 TyL = DL.getIntPtrType(TyL); in cmpTypes()
813 if (TyL == TyR) in cmpTypes()
816 if (int Res = cmpNumbers(TyL->getTypeID(), TyR->getTypeID())) in cmpTypes()
819 switch (TyL->getTypeID()) { in cmpTypes()
824 return cmpNumbers(cast<IntegerType>(TyL)->getBitWidth(), in cmpTypes()
827 VectorType *VTyL = cast<VectorType>(TyL), *VTyR = cast<VectorType>(TyR); in cmpTypes()
850 StructType *STyL = cast<StructType>(TyL); in cmpTypes()
866 FunctionType *FTyL = cast<FunctionType>(TyL); in cmpTypes()
885 ArrayType *ATyL = cast<ArrayType>(TyL); in cmpTypes()