Home
last modified time | relevance | path

Searched refs:IndVarTy (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopConstrainer.cpp179 IntegerType *IndVarTy = cast<IntegerType>(LeftValue->getType()); in parseLoopStructure() local
408 Value *IndVarStartV = Expander.expandCodeFor(IndVarStart, IndVarTy, Ins); in parseLoopStructure()
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp4029 Type *IndVarTy = TripCount->getType(); in createLoopSkeleton() local
4054 PHINode *IndVarPHI = Builder.CreatePHI(IndVarTy, 2, "omp_" + Name + ".iv"); in createLoopSkeleton()
4055 IndVarPHI->addIncoming(ConstantInt::get(IndVarTy, 0), Preheader); in createLoopSkeleton()
4067 Value *Next = Builder.CreateAdd(IndVarPHI, ConstantInt::get(IndVarTy, 1), in createLoopSkeleton()
4132 auto *IndVarTy = cast<IntegerType>(Start->getType()); in calculateCanonicalLoopTripCount() local
4133 assert(IndVarTy == Stop->getType() && "Stop type mismatch"); in calculateCanonicalLoopTripCount()
4134 assert(IndVarTy == Step->getType() && "Step type mismatch"); in calculateCanonicalLoopTripCount()
4138 ConstantInt *Zero = ConstantInt::get(IndVarTy, 0); in calculateCanonicalLoopTripCount()
4139 ConstantInt *One = ConstantInt::get(IndVarTy, 1); in calculateCanonicalLoopTripCount()
5786 Type *IndVarTy = Loop->getIndVarType(); in unrollLoopPartial() local
[all …]