Lines Matching refs:IndVarTy
1849 Type *IndVarTy = TripCount->getType(); in createLoopSkeleton() local
1874 PHINode *IndVarPHI = Builder.CreatePHI(IndVarTy, 2, "omp_" + Name + ".iv"); in createLoopSkeleton()
1875 IndVarPHI->addIncoming(ConstantInt::get(IndVarTy, 0), Preheader); in createLoopSkeleton()
1887 Value *Next = Builder.CreateAdd(IndVarPHI, ConstantInt::get(IndVarTy, 1), in createLoopSkeleton()
1952 auto *IndVarTy = cast<IntegerType>(Start->getType()); in createCanonicalLoop() local
1953 assert(IndVarTy == Stop->getType() && "Stop type mismatch"); in createCanonicalLoop()
1954 assert(IndVarTy == Step->getType() && "Step type mismatch"); in createCanonicalLoop()
1960 ConstantInt *Zero = ConstantInt::get(IndVarTy, 0); in createCanonicalLoop()
1961 ConstantInt *One = ConstantInt::get(IndVarTy, 1); in createCanonicalLoop()
3161 Type *IndVarTy = Loop->getIndVarType(); in unrollLoopPartial() local
3166 ConstantInt::get(IndVarTy, APInt(IndVarTy->getIntegerBitWidth(), Factor, in unrollLoopPartial()