Searched refs:IndVarTy (Results 1 – 2 of 2) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/Frontend/OpenMP/ |
| H A D | OMPIRBuilder.cpp | 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 [all …]
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Scalar/ |
| H A D | InductiveRangeCheckElimination.cpp | 801 IntegerType *IndVarTy = cast<IntegerType>(LeftValue->getType()); in parseLoopStructure() local 1030 Value *IndVarStartV = Expander.expandCodeFor(IndVarStart, IndVarTy, Ins); in parseLoopStructure()
|