Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryLocation.h74 ImpreciseBit = uint64_t(1) << 63, enumerator
77 MaxValue = (MapTombstone - 1) & ~(ImpreciseBit | ScalableBit),
87 static_assert(AfterPointer & ImpreciseBit,
89 static_assert(BeforeOrAfterPointer & ImpreciseBit,
108 return LocationSize(Value | ImpreciseBit); in upperBound()
159 assert((Value & ~(ImpreciseBit | ScalableBit)) < MaxValue && in getValue()
161 return {Value & ~(ImpreciseBit | ScalableBit), isScalable()}; in getValue()
166 bool isPrecise() const { return (Value & ImpreciseBit) == 0; } in isPrecise()