Lines Matching defs:UB
23 Value *LB, Value *UB,
53 UB,
63 Value *LB, Value *UB,
72 createCallSpawnThreads(SubFn, SubFnParam, LB, UB, Stride);
162 // Move iterator to: LB, UB, Stride, Shared variable struct.
165 Value *UB = &*AI;
178 Builder.CreateAlignedStore(UB, UBPtr, Alignment);
184 Value *AdjustedUB = Builder.CreateAdd(UB, ConstantInt::get(LongType, -1),
199 UB = AdjustedUB;
200 createCallDispatchInit(ID, LB, UB, Stride, ChunkSize);
218 UB = Builder.CreateAlignedLoad(LongType, UBPtr, Alignment,
219 "polly.indvar.UB");
234 UB = Builder.CreateAlignedLoad(LongType, UBPtr, Alignment,
235 "polly.indvar.UB.temp");
238 Builder.CreateICmp(llvm::CmpInst::Predicate::ICMP_SLE, UB, AdjustedUB,
239 "polly.indvar.UB.inRange");
240 UB = Builder.CreateSelect(UBInRange, UB, AdjustedUB, "polly.indvar.UB");
241 Builder.CreateAlignedStore(UB, UBPtr, Alignment);
244 llvm::CmpInst::Predicate::ICMP_SLE, LB, UB, "polly.hasIteration");
251 UB = Builder.CreateAlignedLoad(LongType, UBPtr, Alignment,
252 "polly.indvar.UB.entry");
260 Value *NextUB = Builder.CreateAdd(UB, ChunkedStride);
287 Value *IV = createLoop(LB, UB, SequentialLoopStride, Builder, *SubFnLI,
412 Value *LB, Value *UB,
442 UB,