Lines Matching refs:IndVarTy
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
3948 ConstantInt::get(IndVarTy, APInt(IndVarTy->getIntegerBitWidth(), Factor, in unrollLoopPartial()