Searched refs:IndVarTy (Results 1 – 2 of 2) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | LoopConstrainer.cpp | 173 IntegerType *IndVarTy = cast<IntegerType>(LeftValue->getType()); in parseLoopStructure() local 402 Value *IndVarStartV = Expander.expandCodeFor(IndVarStart, IndVarTy, Ins); in parseLoopStructure()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
| H A D | OMPIRBuilder.cpp | 2269 Type *IndVarTy = TripCount->getType(); in createLoopSkeleton() local 2294 PHINode *IndVarPHI = Builder.CreatePHI(IndVarTy, 2, "omp_" + Name + ".iv"); in createLoopSkeleton() 2295 IndVarPHI->addIncoming(ConstantInt::get(IndVarTy, 0), Preheader); in createLoopSkeleton() 2307 Value *Next = Builder.CreateAdd(IndVarPHI, ConstantInt::get(IndVarTy, 1), in createLoopSkeleton() 2372 auto *IndVarTy = cast<IntegerType>(Start->getType()); in createCanonicalLoop() local 2373 assert(IndVarTy == Stop->getType() && "Stop type mismatch"); in createCanonicalLoop() 2374 assert(IndVarTy == Step->getType() && "Step type mismatch"); in createCanonicalLoop() 2380 ConstantInt *Zero = ConstantInt::get(IndVarTy, 0); in createCanonicalLoop() 2381 ConstantInt *One = ConstantInt::get(IndVarTy, 1); in createCanonicalLoop() 3943 Type *IndVarTy = Loop->getIndVarType(); in unrollLoopPartial() local [all …]
|