Searched refs:CastedValue (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | BasicAliasAnalysis.cpp | 276 struct CastedValue { struct 284 explicit CastedValue(const Value *V) : V(V) {} in CastedValue() function 285 explicit CastedValue(const Value *V, unsigned ZExtBits, unsigned SExtBits, in CastedValue() function 295 CastedValue withValue(const Value *NewV, bool PreserveNonNeg) const { in withValue() argument 296 return CastedValue(NewV, ZExtBits, SExtBits, TruncBits, in withValue() 301 CastedValue withZExtOfValue(const Value *NewV, bool ZExtNonNegative) const { in withZExtOfValue() argument 307 return CastedValue(NewV, ZExtBits, SExtBits, TruncBits - ExtendBy, in withZExtOfValue() 316 return CastedValue(NewV, ZExtBits + SExtBits + ExtendBy, 0, 0, in withZExtOfValue() 321 CastedValue withSExtOfValue(const Value *NewV) const { in withSExtOfValue() argument 327 return CastedValue(NewV, ZExtBits, SExtBits, TruncBits - ExtendBy, in withSExtOfValue() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | SValBuilder.cpp | 869 auto CastedValue = [V, this]() { in VisitConcreteInt() local 881 return VB.makeIntVal(CastedValue()); in VisitConcreteInt() 885 return VB.makeIntLocVal(CastedValue()); in VisitConcreteInt()
|