Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp240 struct CastedValue { struct
246 explicit CastedValue(const Value *V) : V(V) {} in CastedValue() argument
247 explicit CastedValue(const Value *V, unsigned ZExtBits, unsigned SExtBits, in CastedValue() argument
256 CastedValue withValue(const Value *NewV) const { in withValue() argument
257 return CastedValue(NewV, ZExtBits, SExtBits, TruncBits); in withValue()
261 CastedValue withZExtOfValue(const Value *NewV) const { in withZExtOfValue() argument
265 return CastedValue(NewV, ZExtBits, SExtBits, TruncBits - ExtendBy); in withZExtOfValue()
269 return CastedValue(NewV, ZExtBits + SExtBits + ExtendBy, 0, 0); in withZExtOfValue()
273 CastedValue withSExtOfValue(const Value *NewV) const { in withSExtOfValue() argument
277 return CastedValue(NewV, ZExtBits, SExtBits, TruncBits - ExtendBy); in withSExtOfValue()
[all …]
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp863 auto CastedValue = [V, this]() { in VisitNonLocConcreteInt() local
875 return VB.makeIntVal(CastedValue()); in VisitNonLocConcreteInt()
879 return VB.makeIntLocVal(CastedValue()); in VisitNonLocConcreteInt()