Searched refs:UMask (Results 1 – 2 of 2) sorted by relevance
476 unsigned getCVRUQualifiers() const { return Mask & (CVRMask | UMask); }494 assert(!(mask & ~CVRMask & ~UMask) && "bitmask contains non-CVRU bits");498 bool hasUnaligned() const { return Mask & UMask; }500 Mask = (Mask & ~UMask) | (flag ? UMask : 0);502 void removeUnaligned() { Mask &= ~UMask; }503 void addUnaligned() { Mask |= UMask; }818 static constexpr uint64_t UMask = 0x8;825 ~(CVRMask | UMask | GCAttrMask | LifetimeMask);
4647 uint64_t UMask = SMask; in matchBitfieldExtractFromShrAnd() local4648 UMask |= maskTrailingOnes<uint64_t>(ShrAmt); in matchBitfieldExtractFromShrAnd()4649 UMask &= maskTrailingOnes<uint64_t>(Size); in matchBitfieldExtractFromShrAnd()4650 if (!isMask_64(UMask)) in matchBitfieldExtractFromShrAnd()4655 const int64_t Width = llvm::countr_one(UMask) - ShrAmt; in matchBitfieldExtractFromShrAnd()