Searched refs:CastedValue (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | BasicAliasAnalysis.cpp | 266 struct CastedValue { struct 274 explicit CastedValue(const Value *V) : V(V) {} in CastedValue() argument 275 explicit CastedValue(const Value *V, unsigned ZExtBits, unsigned SExtBits, in CastedValue() function 285 CastedValue withValue(const Value *NewV, bool PreserveNonNeg) const { in withValue() argument 286 return CastedValue(NewV, ZExtBits, SExtBits, TruncBits, in withValue() 291 CastedValue withZExtOfValue(const Value *NewV, bool ZExtNonNegative) const { in withZExtOfValue() argument 297 return CastedValue(NewV, ZExtBits, SExtBits, TruncBits - ExtendBy, in withZExtOfValue() 306 return CastedValue(NewV, ZExtBits + SExtBits + ExtendBy, 0, 0, in withZExtOfValue() 311 CastedValue withSExtOfValue(const Value *NewV) const { in withSExtOfValue() argument 317 return CastedValue(NewV, ZExtBits, SExtBits, TruncBits - ExtendBy, in withSExtOfValue() [all …]
|