Home
last modified time | relevance | path

Searched refs:LType (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/
H A DEasilySwappableParametersCheck.cpp651 if (LType == RType) { in calculateMixability()
653 return {MixFlags::Trivial, LType}; in calculateMixability()
659 if (isUselessSugar(LType.getTypePtr())) { in calculateMixability()
698 if (LType->getAs<TypedefType>()) { in calculateMixability()
706 return calculateMixability(Check, LType, in calculateMixability()
743 LType.getLocalCVRQualifiers() != 0) { in calculateMixability()
781 [&Ctx, LType](QualType QT) { in calculateMixability()
1316 if (LType == RType) in approximateImplicitConversion()
1317 return {MixFlags::Trivial, LType}; in approximateImplicitConversion()
1324 QualType WorkType = LType; in approximateImplicitConversion()
[all …]
/llvm-project-15.0.7/llvm/lib/TableGen/
H A DTGParser.cpp1022 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType()); in ParseOperation() local
1025 if (!LType && !SType && !DType) { in ParseOperation()
1040 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType()); in ParseOperation() local
1041 if (!LType) { in ParseOperation()
1062 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType()); in ParseOperation() local
1063 Type = (Code == UnOpInit::HEAD) ? LType->getElementType() : LType; in ParseOperation()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DTargetLowering.h2740 unsigned LType; in isExtLoad() local
2742 LType = ISD::ZEXTLOAD; in isExtLoad()
2745 LType = ISD::SEXTLOAD; in isExtLoad()
2748 return isLoadExtLegal(LType, VT, LoadVT); in isExtLoad()
H A DBasicTTIImpl.h980 unsigned LType = variable
983 TLI->isLoadExtLegal(LType, ExtVT, LoadVT))
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp2785 Type *LType = LVal->getType(); in isCompatibleIVType() local
2787 return (LType == RType) || (LType->isPointerTy() && RType->isPointerTy() && in isCompatibleIVType()
2791 (LType->getPointerAddressSpace() == in isCompatibleIVType()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp3017 llvm::StructType *LType = cast<llvm::StructType>(L->getType()); in EmitMemberPointerComparison() local
3018 for (unsigned I = 1, E = LType->getNumElements(); I != E; ++I) { in EmitMemberPointerComparison()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DScalarEvolution.cpp716 SCEVTypes LType = LHS->getSCEVType(), RType = RHS->getSCEVType(); in CompareSCEVComplexity() local
717 if (LType != RType) in CompareSCEVComplexity()
718 return (int)LType - (int)RType; in CompareSCEVComplexity()
729 switch (LType) { in CompareSCEVComplexity()