Searched refs:ExtendBy (Results 1 – 1 of 1) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | BasicAliasAnalysis.cpp | 302 unsigned ExtendBy = V->getType()->getPrimitiveSizeInBits() - in withZExtOfValue() local 304 if (ExtendBy <= TruncBits) in withZExtOfValue() 307 return CastedValue(NewV, ZExtBits, SExtBits, TruncBits - ExtendBy, in withZExtOfValue() 311 ExtendBy -= TruncBits; in withZExtOfValue() 316 return CastedValue(NewV, ZExtBits + SExtBits + ExtendBy, 0, 0, in withZExtOfValue() 322 unsigned ExtendBy = V->getType()->getPrimitiveSizeInBits() - in withSExtOfValue() local 324 if (ExtendBy <= TruncBits) in withSExtOfValue() 327 return CastedValue(NewV, ZExtBits, SExtBits, TruncBits - ExtendBy, in withSExtOfValue() 331 ExtendBy -= TruncBits; in withSExtOfValue() 334 return CastedValue(NewV, ZExtBits, SExtBits + ExtendBy, 0, IsNonNegative); in withSExtOfValue()
|