Lines Matching defs:IndVarTy
3963 Type *IndVarTy = TripCount->getType();
3988 PHINode *IndVarPHI = Builder.CreatePHI(IndVarTy, 2, "omp_" + Name + ".iv");
3989 IndVarPHI->addIncoming(ConstantInt::get(IndVarTy, 0), Preheader);
4001 Value *Next = Builder.CreateAdd(IndVarPHI, ConstantInt::get(IndVarTy, 1),
4067 auto *IndVarTy = cast<IntegerType>(Start->getType());
4068 assert(IndVarTy == Stop->getType() && "Stop type mismatch");
4069 assert(IndVarTy == Step->getType() && "Step type mismatch");
4075 ConstantInt *Zero = ConstantInt::get(IndVarTy, 0);
4076 ConstantInt *One = ConstantInt::get(IndVarTy, 1);
5651 Type *IndVarTy = Loop->getIndVarType();
5656 ConstantInt::get(IndVarTy, APInt(IndVarTy->getIntegerBitWidth(), Factor,