Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryLocation.h76 ImpreciseBit = uint64_t(1) << 63, enumerator
79 MaxValue = (MapTombstone - 1) & ~(ImpreciseBit | ScalableBit),
93 static_assert(AfterPointer & ImpreciseBit,
95 static_assert(BeforeOrAfterPointer & ImpreciseBit,
122 return LocationSize(Value | ImpreciseBit, Direct); in upperBound()
173 assert((Value & ~(ImpreciseBit | ScalableBit)) < MaxValue && in getValue()
175 return {Value & ~(ImpreciseBit | ScalableBit), isScalable()}; in getValue()
180 bool isPrecise() const { return (Value & ImpreciseBit) == 0; } in isPrecise()