Searched refs:IndVarTy (Results 1 – 2 of 2) sorted by relevance
| /openbsd/src/gnu/llvm/llvm/lib/Frontend/OpenMP/ |
| D | OMPIRBuilder.cpp | 1938 Type *IndVarTy = TripCount->getType(); in createLoopSkeleton() local 1963 PHINode *IndVarPHI = Builder.CreatePHI(IndVarTy, 2, "omp_" + Name + ".iv"); in createLoopSkeleton() 1964 IndVarPHI->addIncoming(ConstantInt::get(IndVarTy, 0), Preheader); in createLoopSkeleton() 1976 Value *Next = Builder.CreateAdd(IndVarPHI, ConstantInt::get(IndVarTy, 1), in createLoopSkeleton() 2041 auto *IndVarTy = cast<IntegerType>(Start->getType()); in createCanonicalLoop() local 2042 assert(IndVarTy == Stop->getType() && "Stop type mismatch"); in createCanonicalLoop() 2043 assert(IndVarTy == Step->getType() && "Step type mismatch"); in createCanonicalLoop() 2049 ConstantInt *Zero = ConstantInt::get(IndVarTy, 0); in createCanonicalLoop() 2050 ConstantInt *One = ConstantInt::get(IndVarTy, 1); in createCanonicalLoop() 3368 Type *IndVarTy = Loop->getIndVarType(); in unrollLoopPartial() local [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
| D | InductiveRangeCheckElimination.cpp | 800 IntegerType *IndVarTy = cast<IntegerType>(LeftValue->getType()); in parseLoopStructure() local 1033 Value *IndVarStartV = Expander.expandCodeFor(IndVarStart, IndVarTy, Ins); in parseLoopStructure()
|