Lines Matching refs:TyL
343 int cmpTypes(Type *TyL, Type *TyR) const;
466 Type *TyL = L->getType(); in cmpConstants() local
472 int TypesRes = cmpTypes(TyL, TyR); in cmpConstants()
475 if (!TyL->isFirstClassType()) { in cmpConstants()
483 if (TyL->isFirstClassType()) in cmpConstants()
493 if (const VectorType *VecTyL = dyn_cast<VectorType>(TyL)) in cmpConstants()
503 PointerType *PTyL = dyn_cast<PointerType>(TyL); in cmpConstants()
549 uint64_t NumElementsL = cast<ArrayType>(TyL)->getNumElements(); in cmpConstants()
563 unsigned NumElementsL = cast<StructType>(TyL)->getNumElements(); in cmpConstants()
577 unsigned NumElementsL = cast<VectorType>(TyL)->getNumElements(); in cmpConstants()
613 int FunctionComparator::cmpTypes(Type *TyL, Type *TyR) const { in cmpTypes() argument
615 PointerType *PTyL = dyn_cast<PointerType>(TyL); in cmpTypes()
620 TyL = DL.getIntPtrType(TyL); in cmpTypes()
624 if (TyL == TyR) in cmpTypes()
627 if (int Res = cmpNumbers(TyL->getTypeID(), TyR->getTypeID())) in cmpTypes()
630 switch (TyL->getTypeID()) { in cmpTypes()
637 return cmpNumbers((uint64_t)TyL, (uint64_t)TyR); in cmpTypes()
655 StructType *STyL = cast<StructType>(TyL); in cmpTypes()
671 FunctionType *FTyL = cast<FunctionType>(TyL); in cmpTypes()
690 ArrayType *ATyL = cast<ArrayType>(TyL); in cmpTypes()