Home
last modified time | relevance | path

Searched refs:NextUB (Results 1 – 5 of 5) sorted by relevance

/external/llvm-project/polly/lib/CodeGen/
DLoopGeneratorsKMP.cpp266 Value *NextUB = Builder.CreateAdd(UB, ChunkedStride); in createSubFn() local
269 Builder.CreateICmp(llvm::CmpInst::Predicate::ICMP_SGT, NextUB, in createSubFn()
271 NextUB = Builder.CreateSelect(NextUBOutOfBounds, AdjustedUB, NextUB, in createSubFn()
275 Builder.CreateAlignedStore(NextUB, UBPtr, Alignment); in createSubFn()
/external/clang/lib/Sema/
DSemaOpenMP.cpp5222 ExprResult NextLB, NextUB; in CheckOpenMPLoop() local
5236 NextUB = SemaRef.BuildBinOp(CurScope, IncLoc, BO_Add, UB.get(), ST.get()); in CheckOpenMPLoop()
5237 if (!NextUB.isUsable()) in CheckOpenMPLoop()
5240 NextUB = in CheckOpenMPLoop()
5241 SemaRef.BuildBinOp(CurScope, IncLoc, BO_Assign, UB.get(), NextUB.get()); in CheckOpenMPLoop()
5242 NextUB = SemaRef.ActOnFinishFullExpr(NextUB.get()); in CheckOpenMPLoop()
5243 if (!NextUB.isUsable()) in CheckOpenMPLoop()
5358 Built.NUB = NextUB.get(); in CheckOpenMPLoop()
/external/llvm-project/clang/lib/CodeGen/
DCodeGenFunction.h3572 Expr *NextUB = nullptr;
3578 Expr *NextUB = nullptr)
3581 NextUB(NextUB) {}
DCGStmtOpenMP.cpp2506 EmitIgnoredExpr(LoopArgs.NextUB); in EmitOMPOuterLoop()
2625 OuterLoopArgs.NextUB = S.getNextUpperBound(); in EmitOMPForOuterLoop()
2684 OuterLoopArgs.NextUB = isOpenMPLoopBoundSharingDirective(S.getDirectiveKind()) in EmitOMPDistributeOuterLoop()
/external/llvm-project/clang/lib/Sema/
DSemaOpenMP.cpp8585 ExprResult NextLB, NextUB, CombNextLB, CombNextUB; in checkOpenMPLoop() local
8600 NextUB = SemaRef.BuildBinOp(CurScope, IncLoc, BO_Add, UB.get(), ST.get()); in checkOpenMPLoop()
8601 if (!NextUB.isUsable()) in checkOpenMPLoop()
8604 NextUB = in checkOpenMPLoop()
8605 SemaRef.BuildBinOp(CurScope, IncLoc, BO_Assign, UB.get(), NextUB.get()); in checkOpenMPLoop()
8606 NextUB = in checkOpenMPLoop()
8607 SemaRef.ActOnFinishFullExpr(NextUB.get(), /*DiscardedValue*/ false); in checkOpenMPLoop()
8608 if (!NextUB.isUsable()) in checkOpenMPLoop()
8827 Built.NUB = NextUB.get(); in checkOpenMPLoop()