Lines Matching defs:IndVarTy
3808 Type *IndVarTy = TripCount->getType();
3833 PHINode *IndVarPHI = Builder.CreatePHI(IndVarTy, 2, "omp_" + Name + ".iv");
3834 IndVarPHI->addIncoming(ConstantInt::get(IndVarTy, 0), Preheader);
3846 Value *Next = Builder.CreateAdd(IndVarPHI, ConstantInt::get(IndVarTy, 1),
3911 auto *IndVarTy = cast<IntegerType>(Start->getType());
3912 assert(IndVarTy == Stop->getType() && "Stop type mismatch");
3913 assert(IndVarTy == Step->getType() && "Step type mismatch");
3919 ConstantInt *Zero = ConstantInt::get(IndVarTy, 0);
3920 ConstantInt *One = ConstantInt::get(IndVarTy, 1);
5475 Type *IndVarTy = Loop->getIndVarType();
5480 ConstantInt::get(IndVarTy, APInt(IndVarTy->getIntegerBitWidth(), Factor,