Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DLoopUnrolling.cpp264 llvm::APInt BoundNum = in shouldCompletelyUnroll() local
269 if (InitNum.getBitWidth() != BoundNum.getBitWidth()) { in shouldCompletelyUnroll()
270 InitNum = InitNum.zext(BoundNum.getBitWidth()); in shouldCompletelyUnroll()
271 BoundNum = BoundNum.zext(InitNum.getBitWidth()); in shouldCompletelyUnroll()
275 maxStep = (BoundNum - InitNum + 1).abs().getZExtValue(); in shouldCompletelyUnroll()
277 maxStep = (BoundNum - InitNum).abs().getZExtValue(); in shouldCompletelyUnroll()