Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryLocation.h72 ScalableBit = uint64_t(1) << 62, enumerator
73 AfterPointer = (BeforeOrAfterPointer - 1) & ~ScalableBit,
79 MaxValue = (MapTombstone - 1) & ~(ImpreciseBit | ScalableBit),
91 : Raw | (Scalable ? ScalableBit : uint64_t(0))) {} in LocationSize()
97 static_assert(~(MaxValue & ScalableBit), "Max value don't have bit 62 set");
169 bool isScalable() const { return (Value & ScalableBit); } in isScalable()
173 assert((Value & ~(ImpreciseBit | ScalableBit)) < MaxValue && in getValue()
175 return {Value & ~(ImpreciseBit | ScalableBit), isScalable()}; in getValue()