Home
last modified time | relevance | path

Searched refs:CountTy (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp2208 Type *CountTy = Count->getType(); in transformLoopToCountable() local
2210 ConstantInt::get(CountTy, CountTy->getIntegerBitWidth()), Count); in transformLoopToCountable()
2212 Count = Builder.CreateSub(Count, ConstantInt::get(CountTy, 1)); in transformLoopToCountable()
2215 Count = Builder.CreateAdd(Count, ConstantInt::get(CountTy, 1)); in transformLoopToCountable()
2244 PHINode *TcPhi = PHINode::Create(CountTy, 2, "tcphi"); in transformLoopToCountable()
2249 TcPhi, ConstantInt::get(CountTy, 1), "tcdec", false, true)); in transformLoopToCountable()
2258 LbCond->setOperand(1, ConstantInt::get(CountTy, 0)); in transformLoopToCountable()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp2473 Type *CountTy = Count->getType(); in emitIterationCountCheck() local
2478 return createStepForVF(Builder, CountTy, VF, UF); in emitIterationCountCheck()
2481 createStepForVF(Builder, CountTy, MinProfitableTripCount, 1); in emitIterationCountCheck()
2485 Intrinsic::umax, MinProfTC, createStepForVF(Builder, CountTy, VF, UF)); in emitIterationCountCheck()
2501 ConstantInt::get(CountTy, cast<IntegerType>(CountTy)->getMask()); in emitIterationCountCheck()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp4314 llvm::Type *CountTy = ConvertType(CountFD->getType()); in EmitArraySubscriptExpr() local
4318 Res = Builder.CreateAlignedLoad(CountTy, Res, getIntAlign(), in EmitArraySubscriptExpr()