Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerMemIntrinsics.cpp162 unsigned OpSizeVal) { in getRuntimeLoopCount() argument
164 if (isPowerOf2_32(OpSizeVal)) in getRuntimeLoopCount()
165 return B.CreateLShr(Len, Log2_32(OpSizeVal)); in getRuntimeLoopCount()
172 unsigned OpSizeVal) { in getRuntimeLoopRemainder() argument
174 if (isPowerOf2_32(OpSizeVal)) in getRuntimeLoopRemainder()
175 return B.CreateAnd(Len, OpSizeVal - 1); in getRuntimeLoopRemainder()