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.h70 ScalableBit = uint64_t(1) << 62, enumerator
71 AfterPointer = (BeforeOrAfterPointer - 1) & ~ScalableBit,
77 MaxValue = (MapTombstone - 1) & ~(ImpreciseBit | ScalableBit),
85 : Raw | (Scalable ? ScalableBit : uint64_t(0))) {} in LocationSize()
91 static_assert(~(MaxValue & ScalableBit), "Max value don't have bit 62 set");
155 bool isScalable() const { return (Value & ScalableBit); } in isScalable()
159 assert((Value & ~(ImpreciseBit | ScalableBit)) < MaxValue && in getValue()
161 return {Value & ~(ImpreciseBit | ScalableBit), isScalable()}; in getValue()