Lines Matching defs:IVTy

4160   Type *IVTy = IV->getType();
4161 FunctionCallee StaticInit = getKmpcForStaticInitForType(IVTy, M, *this);
4170 Value *PLowerBound = Builder.CreateAlloca(IVTy, nullptr, "p.lowerbound");
4171 Value *PUpperBound = Builder.CreateAlloca(IVTy, nullptr, "p.upperbound");
4172 Value *PStride = Builder.CreateAlloca(IVTy, nullptr, "p.stride");
4179 Constant *Zero = ConstantInt::get(IVTy, 0);
4180 Constant *One = ConstantInt::get(IVTy, 1);
4196 Value *LowerBound = Builder.CreateLoad(IVTy, PLowerBound);
4197 Value *InclusiveUpperBound = Builder.CreateLoad(IVTy, PUpperBound);
4246 Type *IVTy = IV->getType();
4247 assert(IVTy->getIntegerBitWidth() <= 64 &&
4249 Type *InternalIVTy = IVTy->getIntegerBitWidth() <= 32 ? Type::getInt32Ty(Ctx)
4356 Builder.CreateTrunc(ChunkTripCount, IVTy, "omp_chunk.tripcount.trunc");
4363 Builder.CreateTrunc(DispatchCounter, IVTy, "omp_dispatch.iv.trunc");
4745 Type *IVTy = IV->getType();
4746 FunctionCallee DynamicInit = getKmpcForDynamicInitForType(IVTy, M, *this);
4747 FunctionCallee DynamicNext = getKmpcForDynamicNextForType(IVTy, M, *this);
4753 Value *PLowerBound = Builder.CreateAlloca(IVTy, nullptr, "p.lowerbound");
4754 Value *PUpperBound = Builder.CreateAlloca(IVTy, nullptr, "p.upperbound");
4755 Value *PStride = Builder.CreateAlloca(IVTy, nullptr, "p.stride");
4763 Constant *One = ConstantInt::get(IVTy, 1);
4795 // This needs to be 32-bit always, so can't use the IVTy Zero above.
4803 Builder.CreateSub(Builder.CreateLoad(IVTy, PLowerBound), One, "lb");
4822 UpperBound = Builder.CreateLoad(IVTy, PUpperBound, "ub");
4835 FunctionCallee DynamicFini = getKmpcForDynamicFiniForType(IVTy, M, *this);