Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp292 unsigned ExtendBy = V->getType()->getPrimitiveSizeInBits() - in withZExtOfValue() local
294 if (ExtendBy <= TruncBits) in withZExtOfValue()
297 return CastedValue(NewV, ZExtBits, SExtBits, TruncBits - ExtendBy, in withZExtOfValue()
301 ExtendBy -= TruncBits; in withZExtOfValue()
306 return CastedValue(NewV, ZExtBits + SExtBits + ExtendBy, 0, 0, in withZExtOfValue()
312 unsigned ExtendBy = V->getType()->getPrimitiveSizeInBits() - in withSExtOfValue() local
314 if (ExtendBy <= TruncBits) in withSExtOfValue()
317 return CastedValue(NewV, ZExtBits, SExtBits, TruncBits - ExtendBy, in withSExtOfValue()
321 ExtendBy -= TruncBits; in withSExtOfValue()
324 return CastedValue(NewV, ZExtBits, SExtBits + ExtendBy, 0, IsNonNegative); in withSExtOfValue()