Home
last modified time | relevance | path

Searched refs:UBVal (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp1832 llvm::Value *UBVal = EmitScalarExpr(S.getLastIteration()); in EmitOMPForOuterLoop() local
1834 IVSigned, Ordered, UBVal, Chunk); in EmitOMPForOuterLoop()
2243 auto *UBVal = CGF.EmitLoadOfScalar(UB, S.getLocStart()); in EmitSections() local
2245 CGF.Builder.CreateICmpSLT(UBVal, GlobalUBVal), UBVal, GlobalUBVal); in EmitSections()
/external/llvm-project/clang/lib/CodeGen/
DCGStmtOpenMP.cpp2597 llvm::Value *UBVal = DispatchBounds.second; in EmitOMPForOuterLoop() local
2598 CGOpenMPRuntime::DispatchRTInput DipatchRTInputValues = {LBVal, UBVal, in EmitOMPForOuterLoop()
2749 llvm::Value *UBVal = in emitDistributeParallelForDispatchBounds() local
2751 return {LBVal, UBVal}; in emitDistributeParallelForDispatchBounds()
3130 llvm::Value *UBVal = CGF.EmitScalarExpr(LS.getLastIteration()); in emitDispatchForLoopBounds() local
3131 return {LBVal, UBVal}; in emitDispatchForLoopBounds()
3499 llvm::Value *UBVal = CGF.EmitLoadOfScalar(UB, S.getBeginLoc()); in EmitSections() local
3501 CGF.Builder.CreateICmpSLT(UBVal, GlobalUBVal), UBVal, GlobalUBVal); in EmitSections()
/external/llvm-project/clang/lib/Sema/
DSemaOpenMP.cpp7277 Expr *UBVal = UB; in buildNumIterations() local
7379 SemaRef.BuildBinOp(S, DefaultLoc, BO_Comma, UBMinVal.get(), UBVal); in buildNumIterations()
7399 SemaRef.BuildBinOp(S, DefaultLoc, BO_Comma, UBMaxVal.get(), UBVal); in buildNumIterations()
7427 UBVal = MaxUB.get(); in buildNumIterations()
7435 UBVal = MinUB.get(); in buildNumIterations()
7438 Expr *UBExpr = TestIsLessOp.getValue() ? UBVal : LBVal; in buildNumIterations()
7439 Expr *LBExpr = TestIsLessOp.getValue() ? LBVal : UBVal; in buildNumIterations()