Lines Matching refs:TyL
401 int cmpTypes(Type *TyL, Type *TyR) const;
609 Type *TyL = L->getType(); in cmpConstants() local
615 int TypesRes = cmpTypes(TyL, TyR); in cmpConstants()
618 if (!TyL->isFirstClassType()) { in cmpConstants()
626 if (TyL->isFirstClassType()) in cmpConstants()
636 if (auto *VecTyL = dyn_cast<VectorType>(TyL)) in cmpConstants()
646 PointerType *PTyL = dyn_cast<PointerType>(TyL); in cmpConstants()
710 uint64_t NumElementsL = cast<ArrayType>(TyL)->getNumElements(); in cmpConstants()
724 unsigned NumElementsL = cast<StructType>(TyL)->getNumElements(); in cmpConstants()
738 unsigned NumElementsL = cast<VectorType>(TyL)->getNumElements(); in cmpConstants()
811 int FunctionComparator::cmpTypes(Type *TyL, Type *TyR) const { in cmpTypes() argument
812 PointerType *PTyL = dyn_cast<PointerType>(TyL); in cmpTypes()
817 TyL = DL.getIntPtrType(TyL); in cmpTypes()
821 if (TyL == TyR) in cmpTypes()
824 if (int Res = cmpNumbers(TyL->getTypeID(), TyR->getTypeID())) in cmpTypes()
827 switch (TyL->getTypeID()) { in cmpTypes()
832 return cmpNumbers(cast<IntegerType>(TyL)->getBitWidth(), in cmpTypes()
835 VectorType *VTyL = cast<VectorType>(TyL), *VTyR = cast<VectorType>(TyR); in cmpTypes()
858 StructType *STyL = cast<StructType>(TyL); in cmpTypes()
874 FunctionType *FTyL = cast<FunctionType>(TyL); in cmpTypes()
893 ArrayType *ATyL = cast<ArrayType>(TyL); in cmpTypes()